IServerChannelSinkProvider.Next 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置信道接收器提供程序链中的下一个接收器提供程序。
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
属性值
信道接收器提供程序链中的下一个接收器提供程序。
- 属性
例外
直接调用方没有基础结构权限。
示例
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))