Share via


IClientChannelSinkProvider.Next プロパティ

定義

チャネル シンク プロバイダー チェイン内の次のシンク プロバイダーを取得または設定します。

public:
 property System::Runtime::Remoting::Channels::IClientChannelSinkProvider ^ Next { System::Runtime::Remoting::Channels::IClientChannelSinkProvider ^ get(); void set(System::Runtime::Remoting::Channels::IClientChannelSinkProvider ^ value); };
public System.Runtime.Remoting.Channels.IClientChannelSinkProvider Next { get; set; }
public System.Runtime.Remoting.Channels.IClientChannelSinkProvider Next { [System.Security.SecurityCritical] get; [System.Security.SecurityCritical] set; }
member this.Next : System.Runtime.Remoting.Channels.IClientChannelSinkProvider with get, set
[<get: System.Security.SecurityCritical>]
[<set: System.Security.SecurityCritical>]
member this.Next : System.Runtime.Remoting.Channels.IClientChannelSinkProvider with get, set
Public Property Next As IClientChannelSinkProvider

プロパティ値

IClientChannelSinkProvider

チャネル シンク プロバイダー チェイン内の次のシンク プロバイダー。

属性

例外

直前の呼び出し元に、インフラストラクチャ アクセス許可がありません。

次のコード例は、このプロパティの実装を示しています。

public:
   property IClientChannelSinkProvider^ Next 
   {
      virtual IClientChannelSinkProvider^ get()
      {
         return (nextProvider);
      }

      virtual void set( IClientChannelSinkProvider^ value )
      {
         nextProvider = value;
      }
   }
public IClientChannelSinkProvider Next
{
    get
    {
        return(nextProvider);
    }
    set
    {
        nextProvider = value;
    }
}

適用対象