ServiceClientGenerator.ServiceModel.FindOperation C# (CSharp) Method

FindOperation() public method

Gets the operation information based on the name of the operation
public FindOperation ( string name ) : Operation
name string The name of the operation that information is needed for
return Operation
        public Operation FindOperation(string name)
        {
            return this.Operations.FirstOrDefault(x => x.Name == name);
        }