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