ParseResultFromCanceled Method

Creates a ParseResult instance that represents canceled parsing.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
public static ParseResult FromCanceled(
	string argumentName,
	ReadOnlyMemory<string> remainingArguments,
	bool helpRequested
)

Parameters

argumentName  String
The name of the argument that canceled parsing.
remainingArguments  ReadOnlyMemoryString
Any remaining arguments that were not parsed.
helpRequested  Boolean
Indicates whether usage help should be shown to the user.

Return Value

ParseResult
An instance of the ParseResult structure.

Exceptions

ArgumentNullExceptionargumentName is .

See Also