Note
Do not throw an exception from this method if validation fails. Instead, return
false and provide an error message using the GetErrorMessage(CommandLineArgument, Object)
method.
public virtual bool IsValidPostConversion(
CommandLineArgument argument,
Object? value
)
Public Overridable Function IsValidPostConversion (
argument As CommandLineArgument,
value As Object
) As Boolean
Dim instance As ArgumentValidationAttribute
Dim argument As CommandLineArgument
Dim value As Object
Dim returnValue As Boolean
returnValue = instance.IsValidPostConversion(argument,
value)
public:
virtual bool IsValidPostConversion(
CommandLineArgument^ argument,
Object^ value
)
The default implementation always returns true.