ParseResultFromCanceled Method
            Creates a 
ParseResult instance that represents canceled parsing.
            
Namespace: Ookii.CommandLineAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
public static ParseResult FromCanceled(
	string argumentName,
	ReadOnlyMemory<string> remainingArguments,
	bool helpRequested
)
Public Shared Function FromCanceled ( 
	argumentName As String,
	remainingArguments As ReadOnlyMemory(Of String),
	helpRequested As Boolean
) As ParseResult
Dim argumentName As String
Dim remainingArguments As ReadOnlyMemory(Of String)
Dim helpRequested As Boolean
Dim returnValue As ParseResult
returnValue = ParseResult.FromCanceled(argumentName, 
	remainingArguments, helpRequested)
public:
static ParseResult FromCanceled(
	String^ argumentName, 
	ReadOnlyMemory<String^> remainingArguments, 
	bool helpRequested
)
- 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.
ParseResultAn instance of the 
ParseResult structure.