public ReadOnlyMemory<string> RemainingArguments { get; }
Public ReadOnly Property RemainingArguments As ReadOnlyMemory(Of String)
Get
Dim instance As ParseResult
Dim value As ReadOnlyMemory(Of String)
value = instance.RemainingArguments
public:
property ReadOnlyMemory<String^> RemainingArguments {
ReadOnlyMemory<String^> get ();
}
If parsing succeeded without encountering an argument using CancelModeSuccess, this collection will always be empty.
If a CommandLineArgumentException exception was thrown, which arguments count as remaining depends on the type of error. For errors that occur during parsing, such as an unknown argument name, value conversion errors, validation errors, duplicate arguments, and others, the remaining arguments will be set to include the argument that threw the exception, and all arguments after it.
For errors that occur after parsing is finished, such as validation errors from a validator that uses AfterParsing, or an exception thrown by the target class, this collection will be empty.