Document Library for WPF | ComponentOne
C1.WPF.Document.4.5.2 Assembly / C1.WPF.Document Namespace / ValidateParametersCompletedEventArgs Class / ValidateParametersCompletedEventArgs Constructor
A list of ParameterValidationError objects describing the errors which occur during checking of parameter values.
Any error that occurred during the asynchronous operation.
A value indicating whether the asynchronous operation was canceled.

In This Topic
    ValidateParametersCompletedEventArgs Constructor
    In This Topic
    Initializes a new instance of the ValidateParametersCompletedEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal errors As List(Of ParameterValidationError), _
       ByVal error As Exception, _
       ByVal cancelled As Boolean _
    )
    public ValidateParametersCompletedEventArgs( 
       List<ParameterValidationError> errors,
       Exception error,
       bool cancelled
    )

    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