Ejemplo n.º 1
0
 private bool OnScriptError(Exception ex)
 {
     if (this.Error != null)
     {
         MySqlScriptErrorEventArgs args = new MySqlScriptErrorEventArgs(ex);
         this.Error(this, args);
         return(args.Ignore);
     }
     return(false);
 }
Ejemplo n.º 2
0
		private bool OnScriptError(Exception ex) {
			if (this.Error != null) {
				MySqlScriptErrorEventArgs args = new MySqlScriptErrorEventArgs(ex);
				this.Error(this, args);
				return args.Ignore;
			}
			return false;
		}