public ProxySocket(SocketInformation socketInformation, NewProxy Server) : base(socketInformation) { this.Server = Server; }
public ProxySocket(AddressFamily addressFamily, SocketType socketType, ProtocolType protocolType, NewProxy Server) : base(addressFamily, socketType, protocolType) { this.Server = Server; }
public ProxySocket(Socket socket, NewProxy Server) : base(socket.DuplicateAndClose(System.Diagnostics.Process.GetCurrentProcess().Id)) { this.Server = Server; }