2 instantiations of RegisteredChannel
mscorlib (2)
system\runtime\remoting\channelservices.cs (2)
177newList[current] = new RegisteredChannel(chnl); 191newList[oldList.Length] = new RegisteredChannel(chnl);
12 references to RegisteredChannel
mscorlib (12)
system\runtime\remoting\channelservices.cs (12)
149RegisteredChannel[] oldList = regChnlList.RegisteredChannels; 150RegisteredChannel[] newList = null; 153newList = new RegisteredChannel[1]; 156newList = new RegisteredChannel[oldList.Length + 1]; 174RegisteredChannel oldChannel = oldList[current]; 250RegisteredChannel[] oldList = regChnlList.RegisteredChannels; 251RegisteredChannel[] newList = null; 254newList = new RegisteredChannel[oldList.Length - 1]; 1199private RegisteredChannel[] _channels; 1203_channels = new RegisteredChannel[0]; 1206internal RegisteredChannelList(RegisteredChannel[] channels) 1211internal RegisteredChannel[] RegisteredChannels