Inheritance: System.ApplicationException
Example #1
0
 private void RaiseWritingWarning(NonFatalException exception, Frame frameBeingWritten)
 {
     if (WritingWarning != null)
     {
         WritingWarning(this, new WritingWarningEventArgs(exception, frameBeingWritten));
     }
 }
Example #2
0
 private void RaiseReadingWarning(NonFatalException exception, string frameID)
 {
     if (ReadingWarning != null)
     {
         ReadingWarning(this, new ReadingWarningEventArgs(exception, frameID));
     }
 }
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;
		}
Example #5
0
		private void RaiseWritingWarning(NonFatalException exception, Frame frameBeingWritten)
		{
			if(WritingWarning!=null)
			{
				WritingWarning(this, new WritingWarningEventArgs(exception, frameBeingWritten));
			}
		}
Example #6
0
		private void RaiseReadingWarning(NonFatalException exception,string frameID)
		{
			if(ReadingWarning!=null)
			{
				ReadingWarning(this, new ReadingWarningEventArgs(exception,frameID));
			}
		}
Example #7
0
 public WritingWarningEventArgs(NonFatalException exception, Frame frame)
 {
     this._frame     = frame;
     this._exception = exception;
 }
Example #8
0
 public ReadingWarningEventArgs(NonFatalException exception, string frameID)
 {
     this._frameID   = frameID;
     this._exception = exception;
 }