CommandInfoMatchesName Method

Checks whether the command's name or aliases match the specified name.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public bool MatchesName(
	string name,
	IComparer<string>? comparer = null
)

Parameters

name  String
The name to check for.
comparer  IComparerString  (Optional)
The IComparerT to use for the comparisons, or to use the default comparison, which is OrdinalIgnoreCase.

Return Value

Boolean
if the name matches the Name property or any of the items in the Aliases property.

Exceptions

See Also