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.IClientChannelSink
Public ReadOnly Property NextChannelSink As IClientChannelSink
屬性值
用戶端接收鏈結中的下一個用戶端通道接收。
- 屬性
例外狀況
立即呼叫端沒有基礎結構使用權限。
範例
下列程式代碼範例說明這個屬性的實作。
public:
property IClientChannelSink^ NextChannelSink
{
virtual IClientChannelSink^ get()
{
return (nextSink);
}
}
public IClientChannelSink NextChannelSink
{
get
{
return(nextSink);
}
}
備註
通道接收會在接收提供者鏈結中連結在一起,而且所有通道訊息都會在串行化和傳輸之前流經此鏈結。