// // // // // $Revision: 2185 $ // using System; namespace Debugger { /// /// Provides data related to evalution events /// [Serializable] public class EvalEventArgs : ProcessEventArgs { Eval eval; /// The evaluation that caused the event public Eval Eval { get { return eval; } } /// Initializes a new instance of the class public EvalEventArgs(Eval eval): base(eval.Process) { this.eval = eval; } } }