CommandLineArgumentMultiValueInfo Property

Gets information that only applies to multi-value or dictionary arguments.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public MultiValueArgumentInfo? MultiValueInfo { get; }

Property Value

MultiValueArgumentInfo
An instance of the DictionaryArgumentInfo class, or if the Kind property is not ArgumentKindMultiValue or ArgumentKindDictionary.

Remarks

For dictionary arguments, this property only returns the information that applies to both dictionary and multi-value arguments. For information that applies to dictionary arguments, but not other types of multi-value arguments, use the DictionaryInfo property.

See Also