ServiceEndpointCollection::FindAll Method (Type^)

 

Returns a collection of all the service endpoints for a specified type of service.

Namespace:   System.ServiceModel.Description
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
Collection<ServiceEndpoint^>^ FindAll(
	Type^ contractType
)

Parameters

contractType
Type: System::Type^

The Type of contract for the service endpoint.

Return Value

Type: System.Collections.ObjectModel::Collection<ServiceEndpoint^>^

The Collection<T> of type ServiceEndpoint that contains service endpoints of the specified type or the empty collection if none is found.

Exception Condition
ArgumentNullException

contractType is null.

If you only need to find the first ServiceEndpoint that satisfies the specified criteria, use one of the Find methods instead.

.NET Framework
Available since 3.0
Return to top
Show: