次の方法で共有


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

注釈

チャネル シンクはシンク プロバイダーのチェーン内でリンクされ、すべてのチャネル メッセージはシリアル化および転送される前に、このチェーンを通過します。

適用対象