Example #1
0
 private void RaiseReadingWarning(NonFatalException exception, string frameID)
 {
     if (ReadingWarning != null)
     {
         ReadingWarning(this, new ReadingWarningEventArgs(exception, frameID));
     }
 }
Example #2
0
 private void RaiseWritingWarning(NonFatalException exception, Frame frameBeingWritten)
 {
     if (WritingWarning != null)
     {
         WritingWarning(this, new WritingWarningEventArgs(exception, frameBeingWritten));
     }
 }
Example #3
0
 public WritingWarningEventArgs(NonFatalException exception, Frame frame)
 {
     this.Frame     = frame;
     this.Exception = exception;
 }
Example #4
0
 public ReadingWarningEventArgs(NonFatalException exception, string frameID)
 {
     this.FrameID   = frameID;
     this.Exception = exception;
 }