So I was wondering if it's possible to use proxies with
System.Net.Sockets;
I've searched extensively however most of the posts regarding this question are years old and outdated in terms of the answer.. I did find some form of solutions, however they weren't very explanatory. In basic terms I want the equivalent of
//used for HttpWebRequest, WebClient & HttpClient
WebProxy myproxy = new WebProxy(proxy, port);
for Sockets, I found this library > https://www.example-code.com/csharp/socket_http_proxy.asp.. However I'm looking to see if there's other alternatives ( Socks proxy can be used over http proxies, it's not a mandatory factor )