CommandLineArgument.MultiValueInfo 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.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
public MultiValueArgumentInfo? MultiValueInfo { get; }

Property Value

MultiValueArgumentInfo
An instance of the DictionaryArgumentInfo class, or null if the Kind property is not ArgumentKind.MultiValue or ArgumentKind.Dictionary.

Remarks

For dictionary arguments, this property only returns the information that apples 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