예제 #1
0
        void HandleException(object sender, DynamicValidatorEventArgs args)
        {
            if (args == null)
            {
                return;
            }

            ValidateException(args.Exception);
        }
예제 #2
0
		protected virtual void OnException (DynamicValidatorEventArgs e)
		{
			if (Exception != null)
				Exception (this, e);
		}
예제 #3
0
 private void OnException(object sender, DynamicValidatorEventArgs e)
 {
     ValidateException(e.Exception);
 }
예제 #4
0
 private void OnException(object sender, DynamicValidatorEventArgs e) {
     ValidateException(e.Exception);
 }
예제 #5
0
		void HandleException (object sender, DynamicValidatorEventArgs args)
		{
			if (args == null)
				return;
			
			ValidateException (args.Exception);
		}
 internal void OnException(DynamicValidatorEventArgs eventArgs) {
     Exception(this, eventArgs);
 }