buraksarica / ProxyLib

A .net http proxy library that can read proxy configuration from a text file and can be applied just by changing app.config. Use proxy without chaning your application code. Because of this, you can use this library with any .net application (no matter which language is used, c#, VB.NET etc.)

Home Page:http://www.bsarica.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

USAGE

Build the source, which will generate a .net assembly named ProxyLib. 
Put this binary and Proxy.txt file near the .net application that you want
to communicate over http proxy. Edit your application's app.config file adding 
the following settings:

<system.net>
    <defaultProxy enabled="true" useDefaultCredentials="false">
      <module type = "ProxyLib.BSProxy, ProxyLib" />
    </defaultProxy>
 </system.net>
 
 Finally edit the Proxy.txt file with proper information. Your application should 
 use your proxy settings listed in Proxy.txt

About

A .net http proxy library that can read proxy configuration from a text file and can be applied just by changing app.config. Use proxy without chaning your application code. Because of this, you can use this library with any .net application (no matter which language is used, c#, VB.NET etc.)

http://www.bsarica.com