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);
}
}
注釈
チャネル シンクはシンク プロバイダーのチェーン内でリンクされ、すべてのチャネル メッセージはシリアル化および転送される前に、このチェーンを通過します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET