public BindingCompleteEventArgs(System.Windows.Forms.Binding binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context, string errorText, System.Exception exception, bool cancel) : base(cancel)
 {
     this.binding = binding;
     this.state = state;
     this.context = context;
     this.errorText = (errorText == null) ? string.Empty : errorText;
     this.exception = exception;
 }
 public BindingCompleteEventArgs(System.Windows.Forms.Binding binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context, string errorText, System.Exception exception) : this(binding, state, context, errorText, exception, true)
 {
 }
 public BindingCompleteEventArgs(System.Windows.Forms.Binding binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context) : this(binding, state, context, string.Empty, null, false)
 {
 }