ServiceClientGenerator.CustomizationsModel.CreateNoArgOverload C# (CSharp) Method

CreateNoArgOverload() public method

Determines if the operation has a customization for creating a no argument method
public CreateNoArgOverload ( string operationName ) : bool
operationName string The name of the operation to check for
return bool
        public bool CreateNoArgOverload(string operationName)
        {
            return NoArgOverloads.Contains(operationName, StringComparer.OrdinalIgnoreCase);
        }