UnknownArgumentEventArgs Constructor
Namespace: Ookii.CommandLineAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
public UnknownArgumentEventArgs(
string token,
ReadOnlyMemory<char> name,
ReadOnlyMemory<char> value,
bool isCombinedSwithToken,
ImmutableArray<string> possibleMatches
)
Public Sub New (
token As String,
name As ReadOnlyMemory(Of Char),
value As ReadOnlyMemory(Of Char),
isCombinedSwithToken As Boolean,
possibleMatches As ImmutableArray(Of String)
)
Dim token As String
Dim name As ReadOnlyMemory(Of Char)
Dim value As ReadOnlyMemory(Of Char)
Dim isCombinedSwithToken As Boolean
Dim possibleMatches As ImmutableArray(Of String)
Dim instance As New UnknownArgumentEventArgs(token, name,
value, isCombinedSwithToken, possibleMatches)
public:
UnknownArgumentEventArgs(
String^ token,
ReadOnlyMemory<wchar_t> name,
ReadOnlyMemory<wchar_t> value,
bool isCombinedSwithToken,
ImmutableArray<String^> possibleMatches
)
Parameters
- token String
- The argument token that contains the unknown argument.
- name ReadOnlyMemory<Char>
- The argument name.
- value ReadOnlyMemory<Char>
- The argument value.
- isCombinedSwithToken Boolean
-
Indicates whether the argument is part of a combined short switch argument.
- possibleMatches ImmutableArray<String>
-
A list of possible arguments that this argument could match by prefix, or
null.