protected virtual bool OnDuplicateArgumentWarning(
CommandLineArgument argument,
ReadOnlyMemory<char>? newValue
)
Protected Overridable Function OnDuplicateArgumentWarning (
argument As CommandLineArgument,
newValue As ReadOnlyMemory(Of Char)?
) As Boolean
Dim argument As CommandLineArgument
Dim newValue As ReadOnlyMemory(Of Char)?
Dim returnValue As Boolean
returnValue = Me.OnDuplicateArgumentWarning(argument,
newValue)
protected:
virtual bool OnDuplicateArgumentWarning(
CommandLineArgument^ argument,
Nullable<ReadOnlyMemory<wchar_t>> newValue
)
The base class implementation writes a warning to the ParseOptionsError writer.
This method will not be called if the nested subcommand uses the ICommandWithCustomParsing interface.