Udostępnij za pośrednictwem


IClientChannelSinkProvider.Next Właściwość

Definicja

Pobiera lub ustawia następnego dostawcę ujścia w łańcuchu dostawcy ujścia kanału.

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

Wartość właściwości

IClientChannelSinkProvider

Następny dostawca ujścia w łańcuchu dostawcy ujścia kanału.

Atrybuty

Wyjątki

Bezpośredni obiekt wywołujący nie ma uprawnień do infrastruktury.

Przykłady

Poniższy przykład kodu ilustruje implementację tej właściwości.

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

Dotyczy