CommandLineArgumentIsRequired Property

Gets a value that indicates whether the argument is required.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
C#
public bool IsRequired { get; }

Property Value

Boolean
if the argument's value must be specified on the command line; if the argument may be omitted.

Remarks

An argument defined by a constructor parameter is required if the parameter does not have a default value. An argument defined by a property or method is required if its IsRequired property is .

See Also