Skip to content

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.)

Notifications You must be signed in to change notification settings

buraksarica/ProxyLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published