IClientChannelSink.NextChannelSink 属性     
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取客户端接收器链中的下一个客户端信道接收器。
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.IClientChannelSinkPublic ReadOnly Property NextChannelSink As IClientChannelSink属性值
客户端接收器链中的下一个客户端信道接收器。
- 属性
例外
直接调用方没有基础结构权限。
示例
下面的代码示例演示了此属性的实现。
public:
   property IClientChannelSink^ NextChannelSink 
   {
      virtual IClientChannelSink^ get()
      {
         return (nextSink);
      }
   }
public IClientChannelSink NextChannelSink
{
    get
    {
        return(nextSink);
    }
}
注解
通道接收器在接收器提供程序链中链接在一起,所有通道消息在序列化和传输之前都流经此链。