This class is used to transmit notifications in interactive mode.
상속: System.EventArgs
예제 #1
0
 /// <summary>
 /// Raises the notification if in interactive mode.
 /// </summary>
 /// <param name="e">The notification arguments.</param>
 internal void RaiseNotification(NotificationEventArgs e)
 {
     if (InteractiveMode && NotificationReceived != null)
     {
         NotificationReceived(this, e);
     }
 }
예제 #2
0
파일: Repl.cs 프로젝트: FlorianRappl/YAMP
 static void OnNotified(Object sender, NotificationEventArgs e)
 {
     Console.WriteLine(e.Message);
     Trace.WriteLine(e.Message);
 }