1

I need to implement a basic internet proxy in c#. Initial investigation it seems like it could be a tricky area. Does anyone have pointers to starting points, resources or open source implementations?

will
  • 3,975
  • 6
  • 33
  • 48

1 Answers1

1

Take a look at Fiddler core. You can use Reflector to look at the code.

Kevin Panko
  • 8,356
  • 19
  • 50
  • 61
Jeff
  • 5,913
  • 2
  • 28
  • 30
  • I've used fiddler many times before but didn't know about fiddler core. Very nice stand alone (no fiddler ui) inet prxy server. Thanks for the pointer. – will Jan 09 '10 at 05:21