Inheritance: MagickException
コード例 #1
0
 private void ShowError(MagickErrorException exception)
 {
     ShowError(exception.Message);
 }
コード例 #2
0
 public LoadedEventArgs(MagickErrorException exception)
 {
     Exception = exception;
 }
コード例 #3
0
ファイル: ImageManager.cs プロジェクト: dlemstra/MagickViewer
        private void OnLoaded(MagickErrorException exception)
        {
            if (Loaded == null)
            return;

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