ServiceEndpoint.Address 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
서비스 엔드포인트의 엔드포인트 주소를 가져오거나 설정합니다.
public:
property System::ServiceModel::EndpointAddress ^ Address { System::ServiceModel::EndpointAddress ^ get(); void set(System::ServiceModel::EndpointAddress ^ value); };
public System.ServiceModel.EndpointAddress Address { get; set; }
member this.Address : System.ServiceModel.EndpointAddress with get, set
Public Property Address As EndpointAddress
속성 값
서비스 엔드포인트의 위치를 지정하는 EndpointAddress입니다.
예제
다음 예제에서는 기존 ServiceHost 에 추가 하 고 ServiceEndpoint 주소 속성을 표시 하는 방법을 보여줍니다.
ServiceEndpoint endpnt = serviceHost.AddServiceEndpoint(
typeof(ICalculator),
new WSHttpBinding(),
"CalculatorServiceObject");
Console.WriteLine("Address: {0}", endpnt.Address);
Dim endpnt As ServiceEndpoint = serviceHost.AddServiceEndpoint(GetType(ICalculator), New WSHttpBinding(), "CalculatorServiceObject")
Console.WriteLine("Address: {0}", endpnt.Address)
설명
서비스 엔드포인트가 수신 대기하는 기본값 ListenUri 은 반환Address된 Uri 엔드포인트에서 EndpointAddress 제공합니다.