Udostępnij za pośrednictwem


ServiceDescription Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy ServiceDescription.

Przeciążenia

ServiceDescription()

Inicjuje nowe wystąpienie klasy ServiceDescription.

ServiceDescription(IEnumerable<ServiceEndpoint>)

Inicjuje ServiceDescription nowe wystąpienie klasy z określonego wyliczenia punktów końcowych usługi.

ServiceDescription()

Inicjuje nowe wystąpienie klasy ServiceDescription.

public:
 ServiceDescription();
public ServiceDescription ();
Public Sub New ()

Przykłady

// Use Default constructor
ServiceDescription sd = new ServiceDescription();
' Use Default constructor
Dim sd As New ServiceDescription()

Dotyczy

ServiceDescription(IEnumerable<ServiceEndpoint>)

Inicjuje ServiceDescription nowe wystąpienie klasy z określonego wyliczenia punktów końcowych usługi.

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))

Parametry

endpoints
IEnumerable<ServiceEndpoint>

Typ IEnumerable<T> ServiceEndpoint używany do inicjowania opisu usługi.

Wyjątki

endpoints to null.

Przykłady

// 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)

Dotyczy