Class MySqlScriptErrorEventArgs
Sets the arguments associated to MySQL script errors.
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data.dll
Version: 9.1.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 |
|