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