ServiceClientGenerator.SimpleMethodFormsModel.CreateSimpleMethods C# (CSharp) Method

CreateSimpleMethods() public method

Determines if the operation in the client has a custom simple method specified
public CreateSimpleMethods ( string operationName ) : bool
operationName string The name of the operation
return bool
        public bool CreateSimpleMethods(string operationName)
        {
            if (_emptyData)
                return false;
            return SimpleMethods.ContainsKey(operationName);
        }