コード例 #1
0
 void RemoveConnection()
 {
     if (last_listener == null)
     {
         epl.RemoveConnection(this);
     }
     else
     {
         last_listener.RemoveConnection(this);
     }
 }
コード例 #2
0
ファイル: HttpConnection.cs プロジェクト: prabindh/embedio
 private void RemoveConnection()
 {
     if (_lastListener == null)
     {
         _epl.RemoveConnection(this);
     }
     else
     {
         _lastListener.RemoveConnection(this);
     }
 }