共用方式為


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);
    }
}

備註

通道接收會在接收提供者鏈結中連結在一起,而且所有通道訊息都會在串行化和傳輸之前流經此鏈結。

適用於