IServerChannelSinkProvider.Next Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the next sink provider in the channel sink provider chain.
public:
property System::Runtime::Remoting::Channels::IServerChannelSinkProvider ^ Next { System::Runtime::Remoting::Channels::IServerChannelSinkProvider ^ get(); void set(System::Runtime::Remoting::Channels::IServerChannelSinkProvider ^ value); };
public System.Runtime.Remoting.Channels.IServerChannelSinkProvider Next { get; set; }
public System.Runtime.Remoting.Channels.IServerChannelSinkProvider Next { [System.Security.SecurityCritical] get; [System.Security.SecurityCritical] set; }
member this.Next : System.Runtime.Remoting.Channels.IServerChannelSinkProvider with get, set
[<get: System.Security.SecurityCritical>]
[<set: System.Security.SecurityCritical>]
member this.Next : System.Runtime.Remoting.Channels.IServerChannelSinkProvider with get, set
Public Property Next As IServerChannelSinkProvider
Property Value
The next sink provider in the channel sink provider chain.
- Attributes
Exceptions
The immediate caller does not have infrastructure permission.
Examples
IDictionary^ prop = gcnew Hashtable;
prop[ "port" ] = 9000;
IClientChannelSinkProvider^ clientChain = gcnew BinaryClientFormatterSinkProvider;
IServerChannelSinkProvider^ serverChain = gcnew SoapServerFormatterSinkProvider;
serverChain->Next = gcnew BinaryServerFormatterSinkProvider;
ChannelServices::RegisterChannel( gcnew HttpChannel( prop,clientChain,serverChain ) );
IDictionary prop = new Hashtable();
prop["port"] = 9000;
IClientChannelSinkProvider clientChain = new BinaryClientFormatterSinkProvider();
IServerChannelSinkProvider serverChain = new SoapServerFormatterSinkProvider();
serverChain.Next = new BinaryServerFormatterSinkProvider();
ChannelServices.RegisterChannel(new HttpChannel(prop, clientChain, serverChain));
Dim prop = New Hashtable()
prop("port") = 9000
Dim clientChain = New BinaryClientFormatterSinkProvider()
Dim serverChain = New SoapServerFormatterSinkProvider()
serverChain.Next = New BinaryServerFormatterSinkProvider()
ChannelServices.RegisterChannel(New HttpChannel(prop, clientChain, serverChain))
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.