Inheritance: MagickException
Example #1
0
 private void ShowError(MagickErrorException exception)
 {
     ShowError(exception.Message);
 }
Example #2
0
 public LoadedEventArgs(MagickErrorException exception)
 {
     Exception = exception;
 }
Example #3
0
        private void OnLoaded(MagickErrorException exception)
        {
            if (Loaded == null)
            return;

              _Dispatcher.Invoke((Action)delegate ()
              {
            Loaded(this, new LoadedEventArgs(exception));
            Monitor.Exit(_Semaphore);
              });
        }