Tagged Questions

2
votes
2answers
1k views

Socks Proxy for HttpWebRequest

According to my research whilst trying to solve this problem, it turns out that the .Net WebProxy class does not support Socks proxies - a tad annoying. I also can't seem to find any code or ...
2
votes
1answer
934 views

Connecting to a .NET webservice via a SOCKS5 proxy

I'm attempting to connect through a SOCKS5 proxy to a webservice. Currently, my app.config is as follows: <system.net> <defaultProxy enabled="true" > <proxy ...
1
vote
1answer
240 views

Library For Sending HTTP/S Requests With Socks5 Proxy. C# / .NET

Does anyone happen to know of a library paid or free that will allow me to send HTTP/S requests using a Socks5 proxy? I've googled without much success. I need a way to either send requests in a ...
1
vote
2answers
606 views

Proxy/Socks C# problem

How I can add proxy/socks4/socks5 to C# Socket. I need use it throw Socket. I don't want use WebRequest and any classes. private static Socket ConnectSocket(string server, int port) { Socket s = ...
0
votes
0answers
44 views

DotNet UDP socks Client

I need make a UDP connection in dotnet via a Socks5 proxy but i can not find an implementation of a socks5 client for dotnet that supports UDP. There are a number for TCP but the service i am ...
0
votes
2answers
520 views

SOCKS communication using .net framework 4.0

I want to communicate with server to run my c# application and so I need to connect with server through sock communication. Is it possible using .net framework 4 ?
0
votes
1answer
289 views

How do i set the proxy and SOCKs in libcurl?

I am trying to configure my .NET app to use a proxy. My source is in C# but i learned CURL via C++. My question is where do i put the SOCKs IP and port? i looked through the documentation and didnt ...