ServiceEndpointCollection.FindAll メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
特定の基準を満たすすべてのサービス エンドポイントのコレクションを返します。
オーバーロード
FindAll(Type) |
指定したサービス型のすべてのサービス エンドポイントのコレクションを返します。 |
FindAll(XmlQualifiedName) |
指定したサービス名のすべてのサービス エンドポイントのコレクションを返します。 |
注釈
特定の基準を満たす最初の ServiceEndpoint オブジェクトだけを検索する必要がある場合は、代わりに Find メソッドのいずれかを使用します。
FindAll(Type)
指定したサービス型のすべてのサービス エンドポイントのコレクションを返します。
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)
パラメーター
戻り値
指定した型のサービス エンドポイントを含む Collection<T> 型の ServiceEndpoint。該当するものが見つからなかった場合は空のコレクション。
例外
contractType
が null
です。
注釈
特定の基準を満たす最初の ServiceEndpoint オブジェクトだけを検索する必要がある場合は、代わりに Find メソッドのいずれかを使用します。
適用対象
FindAll(XmlQualifiedName)
指定したサービス名のすべてのサービス エンドポイントのコレクションを返します。
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。該当するものが見つからなかった場合は空のコレクション。
例外
contractName
が null
です。
注釈
特定の基準を満たす最初の ServiceEndpoint オブジェクトだけを検索する必要がある場合は、代わりに Find メソッドのいずれかを使用します。
適用対象
.NET