共用方式為


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,這個集合表示使用指定之 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

PortType 物件,這個物件會用於尋找關聯的 WSDL 連接埠資訊。

傳回

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,這個集合表示位在已指定 Service 內的所有 WSDL 連接埠類型。

例外狀況

wsdlServicenull

備註

使用傳回的物件之前,請先檢查 Errors 屬性以判斷是否有任何匯入錯誤。

適用於