6 implementations of CreateSink
System.AddIn (1)
System\Addin\Hosting\AddInIpcChannel.cs (1)
160
public IClientChannelSink
CreateSink
(IChannelSender channel, string url, object remoteChannelData)
System.Runtime.Remoting (5)
channels\http\httpclientchannel.cs (1)
383
public IClientChannelSink
CreateSink
(IChannelSender channel, String url,
channels\ipc\ipcclientchannel.cs (1)
219
public IClientChannelSink
CreateSink
(IChannelSender channel, String url,
channels\sinks\binaryformattersinks.cs (1)
76
public IClientChannelSink
CreateSink
(IChannelSender channel, String url,
channels\sinks\soapformattersinks.cs (1)
77
public IClientChannelSink
CreateSink
(IChannelSender channel, String url,
channels\tcp\tcpclientchannel.cs (1)
221
public IClientChannelSink
CreateSink
(IChannelSender channel, String url,
6 references to CreateSink
System.AddIn (1)
System\Addin\Hosting\AddInIpcChannel.cs (1)
162
return new AddInBinaryClientFormaterSink(_provider.
CreateSink
(channel, url, remoteChannelData));
System.Runtime.Remoting (5)
channels\http\httpclientchannel.cs (1)
231
IClientChannelSink sink = _sinkProvider.
CreateSink
(this, url, remoteChannelData);
channels\ipc\ipcclientchannel.cs (1)
174
IClientChannelSink sink = _sinkProvider.
CreateSink
(this, url, remoteChannelData);
channels\sinks\binaryformattersinks.cs (1)
82
nextSink = _next.
CreateSink
(channel, url, remoteChannelData);
channels\sinks\soapformattersinks.cs (1)
83
nextSink = _next.
CreateSink
(channel, url, remoteChannelData);
channels\tcp\tcpclientchannel.cs (1)
176
IClientChannelSink sink = _sinkProvider.
CreateSink
(this, url, remoteChannelData);