UnknownArgumentEventArgsPossibleMatches Property

Gets an array of possible arguments that this argument could match by prefix.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
public ImmutableArray<string> PossibleMatches { get; }

Property Value

ImmutableArrayString
An immutable array of possible arguments that this argument could match by prefix, or an empty list if no such matches were found.

Remarks

This property will always return an empty array if the ParseOptionsAutoPrefixAliases or ParseOptionsAttributeAutoPrefixAliases property is .

If the returned array is not empty, it is guaranteed to contains at least two items.

See Also