다음을 통해 공유


ServiceEndpoint.Address 속성

정의

서비스 엔드포인트의 엔드포인트 주소를 가져오거나 설정합니다.

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

서비스 엔드포인트의 위치를 지정하는 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 은 반환AddressUri 엔드포인트에서 EndpointAddress 제공합니다.

적용 대상