Partage via


IClientChannelSink.NextChannelSink Propriété

Définition

Obtient le récepteur de canal client suivant dans la chaîne de récepteurs cliente.

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

Valeur de propriété

Récepteur de canal client suivant dans la chaîne de récepteurs cliente.

Attributs

Exceptions

L'appelant immédiat n'a pas d'autorisation d'accès à l'infrastructure.

Exemples

L’exemple de code suivant illustre une implémentation de cette propriété.

public:
   property IClientChannelSink^ NextChannelSink 
   {
      virtual IClientChannelSink^ get()
      {
         return (nextSink);
      }
   }
public IClientChannelSink NextChannelSink
{
    get
    {
        return(nextSink);
    }
}

Remarques

Les récepteurs de canal sont liés dans une chaîne de fournisseurs de récepteurs et tous les messages de canal transitent par cette chaîne avant d’être sérialisés et transportés.

S’applique à