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)