Org.Mentalis.Proxy.Client.Client C# (CSharp) Method

Client() public method

Initializes a new instance of the Client class.
public Client ( Socket ClientSocket, DestroyDelegate Destroyer ) : System
ClientSocket Socket The Socket connection between this proxy server and the local client.
Destroyer DestroyDelegate The callback method to be called when this Client object disconnects from the local client and the remote server.
return System
        public Client(Socket ClientSocket, DestroyDelegate Destroyer)
        {
            this.ClientSocket = ClientSocket;
            this.Destroyer = Destroyer;
        }

Same methods

Client::Client ( ) : System