Пример #1
0
 public PassiveInMemoryPeer(InMemoryConnectionCenter center, ActiveInMemoryPeer peer) : base(center)
 {
     this.opposite          = peer;
     this.opposite.opposite = this;
     this.BaseAddress       = peer.TargetAddress;
     this.TargetAddress     = peer.BaseAddress;
 }
Пример #2
0
 protected InMemoryPeerBase(InMemoryConnectionCenter center)
 {
     this.center = center;
 }
 public InMemoryListener(InMemoryConnectionCenter center, string address)
 {
     this.center  = center;
     this.Address = address;
 }