void RemoveConnection()
 {
     if (last_listener == null)
     {
         epl.RemoveConnection(this);
     }
     else
     {
         last_listener.RemoveConnection(this);
     }
 }
Exemple #2
0
 private void RemoveConnection()
 {
     if (_lastListener == null)
     {
         _epl.RemoveConnection(this);
     }
     else
     {
         _lastListener.RemoveConnection(this);
     }
 }