Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TargetEventType.cs « Mono.Debugging.Client « Mono.Debugging - github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f93a6cf9ab6fcd843393511ea7290701f30a3964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;

namespace Mono.Debugging.Client
{
	[Serializable]
	public enum TargetEventType
	{
		TargetReady,
		TargetStopped,
		TargetInterrupted,
		TargetHitBreakpoint,
		TargetSignaled,
		TargetExited,
		ExceptionThrown,
		UnhandledException,
		ThreadStarted,
		ThreadStopped
	}
}