다음을 통해 공유


MsmqTransportBindingElement.UseActiveDirectory 속성

정의

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

속성 값

Boolean

Active Directory를 사용하여 큐 주소를 변환해야 하면 true이고, 그렇지 않으면 false입니다.

예제

MsmqTransportBindingElement transportBindingElement = new MsmqTransportBindingElement();
transportBindingElement.UseActiveDirectory = true;

설명

메시지 큐(MSMQ) 큐 주소는 경로 이름이나 직접 형식 이름으로 구성될 수 있습니다. 직접 형식 이름을 사용할 경우 MSMQ는 DNS, NetBIOS 또는 IP를 사용하여 큐 이름을 확인합니다. 경로 이름을 사용할 경우 MSMQ는 Active Directory를 사용하여 큐 이름을 확인합니다.

기본적으로 Windows Communication Foundation (WCF) 전송 변환 직접 형식 이름에는 메시지 큐의 URI를 대기 합니다. UseActiveDirectory 속성을 true로 설정하면 대기 중 전송이 DNS, NetBIOS 또는 IP 대신 Active Directory를 사용하여 컴퓨터 이름을 확인하도록 애플리케이션에서 지정할 수 있습니다.

적용 대상