NetMsmqBindingElement.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.
Returns a Boolean value that indicates whether queue addresses should be converted using Active Directory.
public:
property bool UseActiveDirectory { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("useActiveDirectory", DefaultValue=false)]
public bool UseActiveDirectory { get; set; }
[<System.Configuration.ConfigurationProperty("useActiveDirectory", DefaultValue=false)>]
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
.
- Attributes
Remarks
MSMQ queue addresses can consist of path names or direct format names. With a direct format name, MSMQ resolves the queue name using DNS, NetBIOS, or IP. With a path name, MSMQ 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.