1 implementation of IChannelDataStore
mscorlib (1)
system\runtime\remoting\ichannel.cs (1)
304public class ChannelDataStore : IChannelDataStore
15 references to IChannelDataStore
mscorlib (2)
system\runtime\remoting\dispatchchannelsink.cs (1)
25public void GetChannelData(IChannelDataStore channelData)
system\runtime\remoting\ichannel.cs (1)
113void GetChannelData(IChannelDataStore channelData);
System.AddIn (1)
System\Addin\Hosting\AddInIpcChannel.cs (1)
50public void GetChannelData(IChannelDataStore channelData)
System.Runtime.Remoting (12)
channels\http\httpclientchannel.cs (3)
205if (remoteChannelData is IChannelDataStore) 207IChannelDataStore cds = (IChannelDataStore)remoteChannelData;
channels\ipc\ipcclientchannel.cs (3)
157if (remoteChannelData is IChannelDataStore) 159IChannelDataStore cds = (IChannelDataStore)remoteChannelData;
channels\sinks\binaryformattersinks.cs (1)
351public void GetChannelData(IChannelDataStore channelData)
channels\sinks\soapformattersinks.cs (1)
402public void GetChannelData(IChannelDataStore channelData)
channels\tcp\tcpclientchannel.cs (3)
159if (remoteChannelData is IChannelDataStore) 161IChannelDataStore cds = (IChannelDataStore)remoteChannelData;
metadata\sdlchannelsink.cs (1)
62public void GetChannelData(IChannelDataStore localChannelData)