NetMsmqBinding.UseActiveDirectory 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 a value that indicates whether queue addresses should be converted using Active Directory.
public:
property bool UseActiveDirectory { bool get(); void set(bool value); };
public bool UseActiveDirectory { get; set; }
member this.UseActiveDirectory : bool with get, set
Public Property UseActiveDirectory As Boolean
Property Value
true
if queue addresses should be converted using Active Directory; otherwise, false
.
Examples
The following code shows how to set the UseActiveDirectory property.
NetMsmqBinding binding = new NetMsmqBinding();
binding.UseActiveDirectory = true;
Remarks
The Message Queuing (MSMQ) queue addresses can consist of path names or direct format names. With a direct format name, Message Queuing resolves the queue name using DNS, NetBIOS or IP. With a path name, Message Queuing resolves the queue name using Active Directory.
By default, the Windows Communication Foundation (WCF) queued transport converts the URI of a message queue to a direct format name. By setting the UseActiveDirectory property to true
, an application can specify that the queued transport should resolve the queue name using Active Directory rather than DNS, NetBIOS, or IP.