NetMsmqBinding.QueueTransferProtocol Propriedade
Definição
Obtém ou define um valor de enumeração que indica o transporte de canal de comunicação em fila que esta associação usa.Gets or sets an enumeration value that indicates the queued communication channel transport that this binding uses.
public:
property System::ServiceModel::QueueTransferProtocol QueueTransferProtocol { System::ServiceModel::QueueTransferProtocol get(); void set(System::ServiceModel::QueueTransferProtocol value); };
public System.ServiceModel.QueueTransferProtocol QueueTransferProtocol { get; set; }
member this.QueueTransferProtocol : System.ServiceModel.QueueTransferProtocol with get, set
Public Property QueueTransferProtocol As QueueTransferProtocol
Valor da propriedade
O transporte entre gerenciadores de fila que essa associação usa.The transport between queue managers that this binding uses.
Exemplos
O código a seguir mostra como definir a QueueTransferProtocol propriedade.The following code shows how to set the QueueTransferProtocol property.
NetMsmqBinding binding = new NetMsmqBinding();
binding.QueueTransferProtocol = QueueTransferProtocol.Native;
Comentários
O serviço de enfileiramento de mensagens (MSMQ) não dá suporte ao endereçamento de Active Directory ao usar o protocolo SOAP de mensagens confiáveis, portanto, não defina QueueTransferProtocol como Srmp ou SrmpSecure quando UseActiveDirectory estiver definido como true .Message Queuing (MSMQ) does not support Active Directory addressing when using SOAP Reliable Messaging Protocol, so do not set QueueTransferProtocol to Srmp or SrmpSecure when UseActiveDirectory is set to true.