MsmqTransportBindingElement.QueueTransferProtocol Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Property Value
A QueueTransferProtocol enumeration value that indicates the transport used for message delivery between queue managers.
Exceptions
The value is not one of the QueueTransferProtocol values.
Examples
MsmqTransportBindingElement transportBindingElement = new MsmqTransportBindingElement();
transportBindingElement.QueueTransferProtocol = QueueTransferProtocol.Native;
Remarks
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
.