Example #1
0
 public InProcServer(InProcNetwork network)
 {
     this.Network   = network;
     ClientChannels = new List <INetworkSocket>();
 }
Example #2
0
 public InProcSocket(InProcNetwork network, ChannelType type)
 {
     State        = ConnectionState.Closed;
     Type         = type;
     this.Network = network;
 }