Search Results for

    Show / Hide Table of Contents

    Class MySqlScriptErrorEventArgs

    Sets the arguments associated to MySQL script errors.

    Inheritance
    System.Object
    System.EventArgs
    MySqlScriptEventArgs
    MySqlScriptErrorEventArgs
    Namespace: MySql.Data.MySqlClient
    Assembly: MySql.Data.dll
    Version: 9.3.0
    Syntax
    public class MySqlScriptErrorEventArgs : MySqlScriptEventArgs

    Constructors

    MySqlScriptErrorEventArgs(Exception)

    Initializes a new instance of the MySqlScriptErrorEventArgs class.

    Declaration
    public MySqlScriptErrorEventArgs(Exception exception)
    Parameters
    Type Name Description
    System.Exception exception

    The exception.

    Properties

    Exception

    Gets the exception.

    Declaration
    public Exception Exception { get; }
    Property Value
    Type Description
    System.Exception

    The exception.

    Ignore

    Gets or sets a value indicating whether this MySqlScriptErrorEventArgs is ignored.

    Declaration
    public bool Ignore { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if ignore; otherwise, false.

    In This Article
    Back to top Copyright © 2021, 2025, Oracle and/or its affiliates.