ClassValidationAttribute.GetUsageHelp Method

Gets the usage help message for this validator.

Definition

Namespace: Ookii.CommandLine.Validation
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public virtual string? GetUsageHelp(
	CommandLineParser parser
)

Parameters

parser  CommandLineParser
The parser is the validator is for.

Return Value

String
The usage help message, or null if there is none. The base implementation always returns null.

Remarks

This function is only called if the IncludeValidatorsInDescription property is true.

See Also