OperationDescriptionCollection.Find Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns the first occurrence of an operation description with a specified name from the collection of operation descriptions.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Parameters
- name
- Type: System.String
The name of the operation.
Return Value
Type: System.ServiceModel.Description.OperationDescriptionThe first occurrence of an OperationDescription with the name specified or null if there is no operation with the name specified.
This method returns the first occurrence of the OperationDescription in the collection with the name specified. If you need to find all of the OperationDescription objects in the collection use the FindAll(String) method instead.
Show: