30 lines
549 B
C#
30 lines
549 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: 2274 $</version>
|
|
// </file>
|
|
|
|
using System;
|
|
|
|
namespace Debugger
|
|
{
|
|
[Serializable]
|
|
public class ThreadEventArgs : ProcessEventArgs
|
|
{
|
|
Thread thread;
|
|
|
|
[Debugger.Tests.Ignore]
|
|
public Thread Thread {
|
|
get {
|
|
return thread;
|
|
}
|
|
}
|
|
|
|
public ThreadEventArgs(Thread thread): base(thread.Process)
|
|
{
|
|
this.thread = thread;
|
|
}
|
|
}
|
|
}
|