WsdlImporter.ImportEndpoints 方法

定义

返回 ServiceEndpoint 对象集合,该集合与使用指定绑定、与指定端口类型关联或指定 WSDL 服务中的所有 WSDL 端口相匹配。

重载

ImportEndpoints(Binding)

返回一个 ServiceEndpointCollection,它表示使用指定 Binding 的所有 WSDL 端口类型。

ImportEndpoints(PortType)

返回一个 ServiceEndpointCollection,它表示与指定 PortType 关联的所有 WSDL 端口类型。

ImportEndpoints(Service)

返回一个 ServiceEndpointCollection,它表示指定 Service 中的所有 WSDL 端口类型。

ImportEndpoints(Binding)

返回一个 ServiceEndpointCollection,它表示使用指定 Binding 的所有 WSDL 端口类型。

public:
 System::ServiceModel::Description::ServiceEndpointCollection ^ ImportEndpoints(System::Web::Services::Description::Binding ^ wsdlBinding);
public System.ServiceModel.Description.ServiceEndpointCollection ImportEndpoints (System.Web.Services.Description.Binding wsdlBinding);
member this.ImportEndpoints : System.Web.Services.Description.Binding -> System.ServiceModel.Description.ServiceEndpointCollection
Public Function ImportEndpoints (wsdlBinding As Binding) As ServiceEndpointCollection

参数

wsdlBinding
Binding

WSDL 端口中使用的一个 Binding 对象。

返回

ServiceEndpointCollection

一个 ServiceEndpointCollection,它表示使用指定 Binding 的所有 WSDL 端口类型。

例外

wsdlBindingnull

注解

在使用返回的对象之前,请检查 Errors 属性以确定是否有任何导入错误。

适用于

ImportEndpoints(PortType)

返回一个 ServiceEndpointCollection,它表示与指定 PortType 关联的所有 WSDL 端口类型。

public:
 System::ServiceModel::Description::ServiceEndpointCollection ^ ImportEndpoints(System::Web::Services::Description::PortType ^ wsdlPortType);
public System.ServiceModel.Description.ServiceEndpointCollection ImportEndpoints (System.Web.Services.Description.PortType wsdlPortType);
member this.ImportEndpoints : System.Web.Services.Description.PortType -> System.ServiceModel.Description.ServiceEndpointCollection
Public Function ImportEndpoints (wsdlPortType As PortType) As ServiceEndpointCollection

参数

wsdlPortType
PortType

用于查找关联 WSDL 端口信息的 PortType 对象。

返回

ServiceEndpointCollection

一个 ServiceEndpointCollection,它表示与指定 PortType 关联的所有 WSDL 端口类型。

例外

wsdlPortTypenull

注解

在使用返回的对象之前,请检查 Errors 属性以确定是否有任何导入错误。

适用于

ImportEndpoints(Service)

返回一个 ServiceEndpointCollection,它表示指定 Service 中的所有 WSDL 端口类型。

public:
 System::ServiceModel::Description::ServiceEndpointCollection ^ ImportEndpoints(System::Web::Services::Description::Service ^ wsdlService);
public System.ServiceModel.Description.ServiceEndpointCollection ImportEndpoints (System.Web.Services.Description.Service wsdlService);
member this.ImportEndpoints : System.Web.Services.Description.Service -> System.ServiceModel.Description.ServiceEndpointCollection
Public Function ImportEndpoints (wsdlService As Service) As ServiceEndpointCollection

参数

wsdlService
Service

在其中搜索 WSDL 端口信息的 Service 对象。

返回

ServiceEndpointCollection

一个 ServiceEndpointCollection,它表示指定 Service 中的所有 WSDL 端口类型。

例外

wsdlServicenull

注解

在使用返回的对象之前,请检查 Errors 属性以确定是否有任何导入错误。

适用于