6 implementations of Next
System.AddIn (1)
System\Addin\Hosting\AddInIpcChannel.cs (1)
165public IClientChannelSinkProvider Next
System.Runtime.Remoting (5)
channels\http\httpclientchannel.cs (1)
392public IClientChannelSinkProvider Next
channels\ipc\ipcclientchannel.cs (1)
235public IClientChannelSinkProvider Next
channels\sinks\binaryformattersinks.cs (1)
96public IClientChannelSinkProvider Next
channels\sinks\soapformattersinks.cs (1)
97public IClientChannelSinkProvider Next
channels\tcp\tcpclientchannel.cs (1)
237public IClientChannelSinkProvider Next
6 writes to Next
mscorlib (1)
system\runtime\remoting\configuration.cs (1)
552current.Next = (IClientChannelSinkProvider)CreateChannelSinkProvider(entry, false);
System.AddIn (1)
System\Addin\Hosting\AddInIpcChannel.cs (1)
181_provider.Next = value;
System.Runtime.Remoting (4)
channels\core\corechannel.cs (1)
790providerChain.Next = provider;
channels\http\httpclientchannel.cs (1)
258sink.Next = new HttpClientTransportSinkProvider(_timeout);
channels\ipc\ipcclientchannel.cs (1)
201sink.Next = new IpcClientTransportSinkProvider( _prop);
channels\tcp\tcpclientchannel.cs (1)
203sink.Next = new TcpClientTransportSinkProvider(_prop);
4 references to Next
mscorlib (1)
system\runtime\remoting\configuration.cs (1)
553current = current.Next;
System.AddIn (1)
System\Addin\Hosting\AddInIpcChannel.cs (1)
173return _provider.Next;
System.Runtime.Remoting (2)
channels\core\corechannel.cs (2)
785while (providerChain.Next != null) 787providerChain = providerChain.Next;