IClientChannelSink.NextChannelSink Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém o próximo coletor de canal do cliente na cadeia de coletor do 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
Valor da propriedade
O próximo coletor de canal do cliente na cadeia de coletores do cliente.
- Atributos
Exceções
O chamador imediato não tem permissão de infraestrutura.
Exemplos
O exemplo de código a seguir ilustra uma implementação dessa propriedade.
public:
property IClientChannelSink^ NextChannelSink
{
virtual IClientChannelSink^ get()
{
return (nextSink);
}
}
public IClientChannelSink NextChannelSink
{
get
{
return(nextSink);
}
}
Comentários
Os coletores de canal são vinculados em uma cadeia de provedores de coletores e todas as mensagens de canal fluem por essa cadeia antes de serem serializadas e transportadas.