IClientChannelSinkProvider.Next 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置信道接收器提供程序链中的下一个接收器提供程序。
public:
property System::Runtime::Remoting::Channels::IClientChannelSinkProvider ^ Next { System::Runtime::Remoting::Channels::IClientChannelSinkProvider ^ get(); void set(System::Runtime::Remoting::Channels::IClientChannelSinkProvider ^ value); };
public System.Runtime.Remoting.Channels.IClientChannelSinkProvider Next { get; set; }
public System.Runtime.Remoting.Channels.IClientChannelSinkProvider Next { [System.Security.SecurityCritical] get; [System.Security.SecurityCritical] set; }
member this.Next : System.Runtime.Remoting.Channels.IClientChannelSinkProvider with get, set
[<get: System.Security.SecurityCritical>]
[<set: System.Security.SecurityCritical>]
member this.Next : System.Runtime.Remoting.Channels.IClientChannelSinkProvider with get, set
Public Property Next As IClientChannelSinkProvider
属性值
信道接收器提供程序链中的下一个接收器提供程序。
- 属性
例外
直接调用方没有基础结构权限。
示例
下面的代码示例演示此属性的实现。
public:
property IClientChannelSinkProvider^ Next
{
virtual IClientChannelSinkProvider^ get()
{
return (nextProvider);
}
virtual void set( IClientChannelSinkProvider^ value )
{
nextProvider = value;
}
}
public IClientChannelSinkProvider Next
{
get
{
return(nextProvider);
}
set
{
nextProvider = value;
}
}