MsmqTransportBindingElement::QueueTransferProtocol Property
Gets or sets an enumeration value that indicates the queued communication channel transport that this binding uses.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
public: property QueueTransferProtocol QueueTransferProtocol { QueueTransferProtocol get(); void set(QueueTransferProtocol value); }
Property Value
Type: System.ServiceModel::QueueTransferProtocolA QueueTransferProtocol enumeration value that indicates the transport used for message delivery between queue managers.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The value is not one of the QueueTransferProtocol values. |
Message Queuing (MSMQ) does not support Active Directory addressing when using SOAP Reliable Messaging Protocol (SRMP), so do not set QueueTransferProtocol to Srmp or Srmp when UseActiveDirectory is set to true.
MsmqTransportBindingElement transportBindingElement = new MsmqTransportBindingElement();
transportBindingElement.QueueTransferProtocol = QueueTransferProtocol.Native;
Available since 3.0