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

Значение свойства

Следующий поставщик в цепи поставщиков приемников канала.

Атрибуты

Исключения

У непосредственно вызывающего объекта отсутствует разрешение инфраструктуры.

Примеры

В следующем примере кода показана реализация этого свойства.

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

Применяется к