Skip to content

Instantly share code, notes, and snippets.

View tuxfamily's full-sized avatar

Cédric M. tuxfamily

  • France
View GitHub Profile
@tuxfamily
tuxfamily / passThruProxy.cs
Last active June 26, 2018 11:52 — forked from anth-3/passThruProxy.cs
Defines a simple pass-through proxy interface for C#.NET (IIS) Server applications and web sites.
<%@ WebHandler Language="C#" Class="PassThruProxy" Debug="true" %>
using System;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Web;
/**
* <summary><c>PassThruProxy</c> is a simple pass-through proxy interface for C#.NET (IIS Servers).</summary>