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