void HandleException(object sender, DynamicValidatorEventArgs args) { if (args == null) { return; } ValidateException(args.Exception); }
protected virtual void OnException (DynamicValidatorEventArgs e) { if (Exception != null) Exception (this, e); }
private void OnException(object sender, DynamicValidatorEventArgs e) { ValidateException(e.Exception); }
void HandleException (object sender, DynamicValidatorEventArgs args) { if (args == null) return; ValidateException (args.Exception); }
internal void OnException(DynamicValidatorEventArgs eventArgs) { Exception(this, eventArgs); }