Ejemplo n.º 1
0
 public void Open()
 {
     if (NetworkEventLoop.Connection != null)
     {
         NetworkEventLoop.Connection(RemoteHost, this);
     }
 }
Ejemplo n.º 2
0
 protected void InvokeConnectIfNotNull(INode remoteHost)
 {
     if (NetworkEventLoop.Connection != null)
     {
         NetworkEventLoop.Connection(remoteHost, this);
     }
 }