2 interfaces inheriting from IChannel
mscorlib (2)
system\runtime\remoting\ichannel.cs (2)
43public interface IChannelSender : IChannel 50public interface IChannelReceiver : IChannel
1 implementation of IChannel
mscorlib (1)
system\runtime\remoting\crossappdomainchannel.cs (1)
31internal class CrossAppDomainChannel : IChannel, IChannelSender, IChannelReceiver
26 references to IChannel
mscorlib (22)
system\runtime\remoting\channelservices.cs (17)
101public static void RegisterChannel(IChannel chnl, bool ensureSecurity) 109public static void RegisterChannel(IChannel chnl) 117unsafe internal static void RegisterChannelInternal(IChannel chnl, bool ensureSecurity) 228unsafe public static void UnregisterChannel(IChannel chnl) 296public static IChannel[] RegisteredChannels 306return new IChannel[0]; 317IChannel[] temp = new IChannel[visibleChannels]; 320IChannel channel = regChnlList.GetChannel(i); 371public static IChannel GetChannel(String name) 378IChannel channel = regChnlList.GetChannel(matchingIdx); 585IChannel chnl = regChnlList.GetChannel(i); 1156private IChannel channel; 1161internal RegisteredChannel(IChannel chnl) 1175internal virtual IChannel Channel 1227internal IChannel GetChannel(int index) 1260internal int FindChannelIndex(IChannel channel)
system\runtime\remoting\configuration.cs (4)
443IChannel chnl = CreateChannelFromConfigEntry(entry); 453internal static IChannel CreateChannelFromConfigEntry( 501IChannel channel = null; 505channel = (IChannel)Activator.CreateInstance(type,
system\runtime\remoting\crossappdomainchannel.cs (1)
70ChannelServices.RegisterChannelInternal((IChannel)adc, false /*ensureSecurity*/);
System.AddIn (1)
System\Addin\Hosting\RemotingHelper.cs (1)
49IChannel ichannel = new AddInIpcChannel(props, clientProvider, serverProvider);
System.Runtime.Remoting (3)
channels\core\corechannel.cs (1)
832internal static SinkChannelProtocol DetermineChannelProtocol(IChannel channel)
channels\http\httpremotinghandler.cs (2)
126IChannel[] channels = ChannelServices.RegisteredChannels; 127foreach (IChannel channel in channels)