pascalabcnet/Debugger.Core/Src/Variables/Values/ValueEventArgs.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

34 lines
732 B
C#

// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
// <version>$Revision: 2185 $</version>
// </file>
using System;
namespace Debugger
{
/// <summary>
/// Provides data for events related to <see cref="Debugger.Value"/> class
/// </summary>
[Serializable]
public class ValueEventArgs : ProcessEventArgs
{
Value val;
/// <summary> The value that caused the event </summary>
public Value Value {
get {
return val;
}
}
/// <summary> Initializes a new instance of the class </summary>
public ValueEventArgs(Value val): base(val.Process)
{
this.val = val;
}
}
}