hey!
is there a way I can proxify my application's connection to the internet??
I want it to be able to select a random proxy from a list of proxy IP address in a text file.
Is that possible?
Thanks
Printable View
hey!
is there a way I can proxify my application's connection to the internet??
I want it to be able to select a random proxy from a list of proxy IP address in a text file.
Is that possible?
Thanks
Well after some research I came accross System.Net.WebProxy. Here is what I have with it so far:
Can I set the value of proxy to equal something like 127.0.1.2:80 or do I need to split it into the address and port?Code:Dim pr As New System.Net.WebProxy(proxy)
Also how do I force my application to connect to the internet through that proxy? Because this is ithe part that is really baffeling me.