RemoveConnection() private method

private RemoveConnection ( HttpConnection cnc ) : void
cnc HttpConnection
return void
Example #1
0
 private void removeConnection()
 {
     if (_lastListener != null)
     {
         _lastListener.RemoveConnection(this);
     }
     else
     {
         _listener.RemoveConnection(this);
     }
 }
        private void removeConnection()
        {
            if (_lastListener == null)
            {
                _listener.RemoveConnection(this);

                return;
            }

            _lastListener.RemoveConnection(this);
        }
 private void RemoveConnection()
 {
     if (_lastListener == null)
     {
         _epListener.RemoveConnection(this);
     }
     else
     {
         _lastListener.RemoveConnection(this);
     }
 }
Example #4
0
 void RemoveConnection()
 {
     if (last_listener == null)
     {
         epl.RemoveConnection(this);
     }
     else
     {
         last_listener.RemoveConnection(this);
     }
 }