ServiceEndpointCollection.FindAll メソッド

定義

特定の基準を満たすすべてのサービス エンドポイントのコレクションを返します。

オーバーロード

FindAll(Type)

指定したサービス型のすべてのサービス エンドポイントのコレクションを返します。

FindAll(XmlQualifiedName)

指定したサービス名のすべてのサービス エンドポイントのコレクションを返します。

注釈

特定の基準を満たす最初の ServiceEndpoint オブジェクトだけを検索する必要がある場合は、代わりに Find メソッドのいずれかを使用します。

FindAll(Type)

ソース:
ServiceEndpointCollection.cs
ソース:
ServiceEndpointCollection.cs
ソース:
ServiceEndpointCollection.cs

指定したサービス型のすべてのサービス エンドポイントのコレクションを返します。

public:
 System::Collections::ObjectModel::Collection<System::ServiceModel::Description::ServiceEndpoint ^> ^ FindAll(Type ^ contractType);
public System.Collections.ObjectModel.Collection<System.ServiceModel.Description.ServiceEndpoint> FindAll (Type contractType);
member this.FindAll : Type -> System.Collections.ObjectModel.Collection<System.ServiceModel.Description.ServiceEndpoint>
Public Function FindAll (contractType As Type) As Collection(Of ServiceEndpoint)

パラメーター

contractType
Type

サービス エンドポイントのコントラクトの Type

戻り値

指定した型のサービス エンドポイントを含む Collection<T> 型の ServiceEndpoint。該当するものが見つからなかった場合は空のコレクション。

例外

contractTypenullです。

注釈

特定の基準を満たす最初の ServiceEndpoint オブジェクトだけを検索する必要がある場合は、代わりに Find メソッドのいずれかを使用します。

適用対象

FindAll(XmlQualifiedName)

ソース:
ServiceEndpointCollection.cs
ソース:
ServiceEndpointCollection.cs
ソース:
ServiceEndpointCollection.cs

指定したサービス名のすべてのサービス エンドポイントのコレクションを返します。

public:
 System::Collections::ObjectModel::Collection<System::ServiceModel::Description::ServiceEndpoint ^> ^ FindAll(System::Xml::XmlQualifiedName ^ contractName);
public System.Collections.ObjectModel.Collection<System.ServiceModel.Description.ServiceEndpoint> FindAll (System.Xml.XmlQualifiedName contractName);
member this.FindAll : System.Xml.XmlQualifiedName -> System.Collections.ObjectModel.Collection<System.ServiceModel.Description.ServiceEndpoint>
Public Function FindAll (contractName As XmlQualifiedName) As Collection(Of ServiceEndpoint)

パラメーター

contractName
XmlQualifiedName

サービスの XmlQualifiedName

戻り値

指定したコントラクト名と名前空間を持つサービス エンドポイントを含む Collection<T> 型の ServiceEndpoint。該当するものが見つからなかった場合は空のコレクション。

例外

contractNamenullです。

注釈

特定の基準を満たす最初の ServiceEndpoint オブジェクトだけを検索する必要がある場合は、代わりに Find メソッドのいずれかを使用します。

適用対象