removeConnection() public method

public removeConnection ( XmlRpcServerConnection sc ) : void
sc XmlRpcServerConnection
return void
 public override void Close()
 {
     XmlRpcUtil.log(XmlRpcUtil.XMLRPC_LOG_LEVEL.INFO, "XmlRpcServerConnection is closing");
     if (socket != null)
     {
         socket.Close(100);
         socket = null;
     }
     server.removeConnection(this);
 }