5 implementations of Next
mscorlib (1)
system\runtime\remoting\dispatchchannelsink.cs (1)
35
public IServerChannelSinkProvider
Next
System.AddIn (1)
System\Addin\Hosting\AddInIpcChannel.cs (1)
55
public IServerChannelSinkProvider
Next
System.Runtime.Remoting (3)
channels\sinks\binaryformattersinks.cs (1)
382
public IServerChannelSinkProvider
Next
channels\sinks\soapformattersinks.cs (1)
433
public IServerChannelSinkProvider
Next
metadata\sdlchannelsink.cs (1)
79
public IServerChannelSinkProvider
Next
8 writes to Next
mscorlib (3)
system\runtime\remoting\channelservices.cs (2)
950
lastProvider.
Next
= new DispatchChannelSinkProvider();
955
lastProvider.
Next
= null;
system\runtime\remoting\configuration.cs (1)
577
current.
Next
= (IServerChannelSinkProvider)CreateChannelSinkProvider(entry, true);
System.AddIn (1)
System\Addin\Hosting\AddInIpcChannel.cs (1)
71
_sinkProvider.
Next
= value;
System.Runtime.Remoting (4)
channels\http\httpserverchannel.cs (2)
222
sink.
Next
= new SoapServerFormatterSinkProvider();
224
sink.
Next
= new BinaryServerFormatterSinkProvider();
channels\ipc\ipcserverchannel.cs (1)
178
sink.
Next
= new SoapServerFormatterSinkProvider();
channels\tcp\tcpserverchannel.cs (1)
240
sink.
Next
= new SoapServerFormatterSinkProvider();
6 references to Next
mscorlib (3)
system\runtime\remoting\channelservices.cs (2)
948
while (lastProvider.
Next
!= null)
949
lastProvider = lastProvider.
Next
;
system\runtime\remoting\configuration.cs (1)
578
current = current.
Next
;
System.AddIn (1)
System\Addin\Hosting\AddInIpcChannel.cs (1)
63
return _sinkProvider.
Next
;
System.Runtime.Remoting (2)
channels\core\corechannel.cs (1)
802
provider = provider.
Next
;
channels\http\httpserverchannel.cs (1)
223
sink = sink.
Next
;