XmlRpc_Wrapper.XmlRpcServer.createConnection C# (CSharp) Method

createConnection() private method

private createConnection ( Socket s ) : XmlRpcServerConnection
s Socket
return XmlRpcServerConnection
        private XmlRpcServerConnection createConnection(Socket s)
        {
            // Specify that the connection object be deleted when it is closed
            return new XmlRpcServerConnection(s, this, true);
        }