ServiceEndpointCollection::Find Method (Type^, XmlQualifiedName^)
.NET Framework (current version)
Returns a service endpoint of a specified contract type and with a specified binding name and namespace from the collection of service endpoints.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Parameters
- contractType
-
Type:
System::Type^
The Type of contract for the service endpoint.
- bindingName
-
Type:
System.Xml::XmlQualifiedName^
The XmlQualifiedName for the binding of the service.
Return Value
Type: System.ServiceModel.Description::ServiceEndpoint^The first ServiceEndpoint of the specified contract type and binding name and namespace or null if none was found.
| Exception | Condition |
|---|---|
| ArgumentNullException | contractType or bindingName is null. |
There are potentially multiple endpoints that could satisfy the criteria. The method returns the first one encountered in the collection. If you need to find all of the ServiceEndpoint objects that satisfy the specified criteria, use one of the FindAll methods instead.
.NET Framework
Available since 3.0
Available since 3.0
Show: