ServiceEndpointCollection::Find Method (XmlQualifiedName^, XmlQualifiedName^)

 

Returns the first service endpoint with the specified contract name and namespace and binding name and namespace from the collection of service endpoints.

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

public:
ServiceEndpoint^ Find(
	XmlQualifiedName^ contractName,
	XmlQualifiedName^ bindingName
)

Parameters

contractName
Type: System.Xml::XmlQualifiedName^

The XmlQualifiedName for the contract of the service.

bindingName
Type: System.Xml::XmlQualifiedName^

The XmlQualifiedName for the binding of the service.

Return Value

Type: System.ServiceModel.Description::ServiceEndpoint^

The first ServiceEndpoint with the specified binding and contract names and namespaces.

Exception Condition
ArgumentNullException

contractName 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
Return to top
Show: