ValidatePatternAttributeErrorMessage Property

Gets or sets a custom error message to use.

Definition

Namespace: Ookii.CommandLine.Validation
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.1.0+9df03b6173b5fc9d44dc39638758964dd7a0f4c7
C#
public string? ErrorMessage { get; set; }

Property Value

String
A compound format string for the error message to use, or to use a generic error message.

Remarks

If this property is , the message returned by ArgumentValidationAttributeGetErrorMessage(CommandLineArgument, Object) will be used.

This property is a compound format string, and may have three placeholders: {0} for the argument name, {1} for the value, and {2} for the pattern.

See Also