CompositeDuplexBindingElement.BuildChannelListener<TChannel> Método
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.
Retorna um ouvinte de canais que pode aceitar um canal dúplex de composição.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel override System::ServiceModel::Channels::IChannelListener<TChannel> ^ BuildChannelListener(System::ServiceModel::Channels::BindingContext ^ context);
public override System.ServiceModel.Channels.IChannelListener<TChannel> BuildChannelListener<TChannel> (System.ServiceModel.Channels.BindingContext context) where TChannel : class, System.ServiceModel.Channels.IChannel;
override this.BuildChannelListener : System.ServiceModel.Channels.BindingContext -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overrides Function BuildChannelListener(Of TChannel As {Class, IChannel}) (context As BindingContext) As IChannelListener(Of TChannel)
Parâmetros de tipo
- TChannel
O IChannel que o ouvinte aceita.
Parâmetros
- context
- BindingContext
O BindingContext que fornece o contexto necessário para criar o ouvinte de canais.
Retornos
Um IChannelListener<TChannel> que aceita um canal dúplex de composição do tipo TChannel
.
Exceções
context
é null
.
O TChannel
não é do tipo IInputChannel e não tem suporte.
Comentários
O contexto de build requer um IInputChannel para o TChannel
.