Exemplo n.º 1
0
 public NormalNetworkPeerBase(NetworkPeerIdentity identity, INetworkPoint[] networkPoints) : this(identity)
 {
     NetworkConnection.NetworkPoints.AddRange(networkPoints);
 }
Exemplo n.º 2
0
 public NormalNetworkPeerBase(NetworkPeerIdentity identity)
 {
     Identity          = identity;
     NetworkConnection = new NetworkConnectionBase();
     NetworkConnection.ReceivedDataCommand += OnReceivedDataCommand;
 }