ServiceDescription 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ServiceDescription 클래스의 새 인스턴스를 초기화합니다.
오버로드
ServiceDescription() |
ServiceDescription 클래스의 새 인스턴스를 초기화합니다. |
ServiceDescription(IEnumerable<ServiceEndpoint>) |
지정한 서비스 엔드포인트 열거형에서 ServiceDescription 클래스의 새 인스턴스를 초기화합니다. |
ServiceDescription()
ServiceDescription 클래스의 새 인스턴스를 초기화합니다.
public:
ServiceDescription();
public ServiceDescription ();
Public Sub New ()
예제
// Use Default constructor
ServiceDescription sd = new ServiceDescription();
' Use Default constructor
Dim sd As New ServiceDescription()
적용 대상
ServiceDescription(IEnumerable<ServiceEndpoint>)
지정한 서비스 엔드포인트 열거형에서 ServiceDescription 클래스의 새 인스턴스를 초기화합니다.
public:
ServiceDescription(System::Collections::Generic::IEnumerable<System::ServiceModel::Description::ServiceEndpoint ^> ^ endpoints);
public ServiceDescription (System.Collections.Generic.IEnumerable<System.ServiceModel.Description.ServiceEndpoint> endpoints);
new System.ServiceModel.Description.ServiceDescription : seq<System.ServiceModel.Description.ServiceEndpoint> -> System.ServiceModel.Description.ServiceDescription
Public Sub New (endpoints As IEnumerable(Of ServiceEndpoint))
매개 변수
- endpoints
- IEnumerable<ServiceEndpoint>
서비스 설명을 초기화하는 데 사용되는 IEnumerable<T> 형식의 ServiceEndpoint입니다.
예외
endpoints
이(가) null
인 경우
예제
// Create ServiceDescription from a collection of service endpoints
List<ServiceEndpoint> endpoints = new List<ServiceEndpoint>();
ContractDescription conDescr = new ContractDescription("ICalculator");
EndpointAddress endpointAddress = new EndpointAddress("http://localhost:8001/Basic");
ServiceEndpoint ep = new ServiceEndpoint(conDescr, new BasicHttpBinding(), endpointAddress);
endpoints.Add(ep);
ServiceDescription sd2 = new ServiceDescription(endpoints);
' Create ServiceDescription from a collection of service endpoints
Dim endpoints As New List(Of ServiceEndpoint)()
Dim conDescr As New ContractDescription("ICalculator")
Dim endpointAddress As New EndpointAddress("http://localhost:8001/Basic")
Dim ep As New ServiceEndpoint(conDescr, New BasicHttpBinding(), endpointAddress)
endpoints.Add(ep)
Dim sd2 As New ServiceDescription(endpoints)