Partilhar via


MsmqTransportBindingElement.BuildChannelListener<TChannel> Método

Definição

Cria um ouvinte de canais usando o contexto fornecido.

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 tipo de canal a ser usado para criar o ouvinte de canal. Os tipos de canal permitidos são IInputSessionChannel ou uma IInputChannel classe.

Parâmetros

context
BindingContext

O BindingContext com a qual criar o ouvinte de canais.

Retornos

Um ouvinte de canais MSMQ (Enfileiramento de Mensagens) que pode ser usado para criar canais para receber mensagens de aplicativos existentes do MSMQ.

Exceções

O valor de contexto é nulo.

O TChannel não é IInputChannel ou IInputSessionChannel.

ExactlyOnce é true e Durable é false.

- ou -

A fila não é legível.

- ou -

ExactlyOnce é true e a fila não é transacional.

- ou -

ExactlyOnce é false e a fila é transacional.

- ou -

ReceiveErrorHandling é definido como Move e o nome da fila contém um ";" no Windows Vista.

- ou -

ExactlyOnce é definido como true e não é possível abrir a subfila de repetição no Windows Vista.

- ou -

ReceiveErrorHandling é definido para Reject ou Move e a plataforma é Windows Vista.

- ou -

MsmqTransportSecurity.MsmqAuthenticationMode é definido como WindowsDomain e MSMQ é instalado sem integração com o Active Directory.

- ou -

MsmqTransportSecurity.MsmqAuthenticationMode é None e MsmqTransportSecurity.MsmqProtectionLevel não é None.

- ou -

MsmqTransportSecurity.MsmqAuthenticationMode é Certificado ou WindowsDomain e MsmqTransportSecurity.MsmqProtectionLevel é None.

Exemplos

transportBindingElement.BuildChannelListener<IInputChannel>(context);

Aplica-se a