IClientChannelSink.NextChannelSink 属性

定义

获取客户端接收器链中的下一个客户端信道接收器。

public:
 property System::Runtime::Remoting::Channels::IClientChannelSink ^ NextChannelSink { System::Runtime::Remoting::Channels::IClientChannelSink ^ get(); };
public System.Runtime.Remoting.Channels.IClientChannelSink NextChannelSink { get; }
public System.Runtime.Remoting.Channels.IClientChannelSink NextChannelSink { [System.Security.SecurityCritical] get; }
member this.NextChannelSink : System.Runtime.Remoting.Channels.IClientChannelSink
[<get: System.Security.SecurityCritical>]
member this.NextChannelSink : System.Runtime.Remoting.Channels.IClientChannelSink
Public ReadOnly Property NextChannelSink As IClientChannelSink

属性值

客户端接收器链中的下一个客户端信道接收器。

属性

例外

直接调用方没有基础结构权限。

示例

下面的代码示例演示了此属性的实现。

public:
   property IClientChannelSink^ NextChannelSink 
   {
      virtual IClientChannelSink^ get()
      {
         return (nextSink);
      }
   }
public IClientChannelSink NextChannelSink
{
    get
    {
        return(nextSink);
    }
}

注解

通道接收器在接收器提供程序链中链接在一起,所有通道消息在序列化和传输之前都流经此链。

适用于