Initializes a new instance of the
ValidateParametersCompletedEventArgs class.
Syntax
'Declaration
Public Function New( _
ByVal As System.Collections.Generic.List(Of ParameterValidationError), _
ByVal As System.Exception, _
ByVal As System.Boolean _
)
public ValidateParametersCompletedEventArgs(
System.Collections.Generic.List<ParameterValidationError> ,
System.Exception ,
System.bool
)
Parameters
- errors
- A list of ParameterValidationError objects describing the errors which occur during checking of parameter values.
- error
- Any error that occurred during the asynchronous operation.
- cancelled
- A value indicating whether the asynchronous operation was canceled.
See Also