CommandLineArgumentAllowNull Property

Gets a value that indicates whether or not this argument accepts values.

Definition

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

Property Value

Boolean
if the ArgumentType is a nullable reference type or NullableT; if the argument is any other value type or, for .Net 6.0 and later only, a non-nullable reference type.

Remarks

For a multi-value argument, this value indicates whether the element type can be .

For a dictionary argument, this value indicates whether the type of the dictionary's values can be . Dictionary key types are always non-nullable, as this is a constraint on DictionaryTKey, TValue. This works only if the argument type is DictionaryTKey, TValue or IDictionaryTKey, TValue. For other types that implement IDictionaryTKey, TValue, it is not possible to determine the nullability of TValue except if it's a value type.

This property indicates what happens when the TypeConverter used for this argument returns from its ConvertFrom(ITypeDescriptorContext, CultureInfo, Object) method.

If this property is , the argument's value will be set to . If it's , a CommandLineArgumentException will be thrown during parsing with NullArgumentValue.

If the project containing the command line argument type does not use nullable reference types, or does not support them (e.g. on older .Net versions), this property will only be for value types other than NullableT. Only on .Net 6.0 and later will the property be for non-nullable reference types. Although nullable reference types are available on .Net Core 3.x, only .Net 6.0 and later will get this behavior due to the necessary runtime support to determine nullability of a property or constructor argument.

See Also