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