pascalabcnet/Debugger.Core/Src/Threads/ProcessEventArgs.cs

30 lines
583 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
// <version>$Revision: 2274 $</version>
// </file>
using System;
namespace Debugger
{
[Serializable]
public class ProcessEventArgs: DebuggerEventArgs
{
Process process;
[Debugger.Tests.Ignore]
public Process Process {
get {
return process;
}
}
public ProcessEventArgs(Process process): base(process == null ? null : process.Debugger)
{
this.process = process;
}
}
}