dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / OnCheckEventArgs Class / Reason Property

In This Topic
    Reason Property (OnCheckEventArgs)
    In This Topic
    Gets or sets a string description that is passed to OnChange handler.
    Syntax
    'Declaration
     
    Public Property Reason As String
    public string Reason {get; set;}

    Property Value

    A string value.
    Remarks
    When you detect that there were changes in the table, and the event handler returns true, you can assign any string value to this property. The value will be available in the OnChange event handler as the MySqlTableChangeEventArgs.Reason property of the MySqlTableChangeEventArgs object.
    See Also