-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDebugEventArgs.cs
More file actions
48 lines (46 loc) · 1.05 KB
/
Copy pathDebugEventArgs.cs
File metadata and controls
48 lines (46 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using XDevkit;
namespace XboxDebugManager
{
public class DebugEventArgs : EventArgs
{
public XboxDebugEventType EventType
{
get;
}
public string Message
{
get;
}
public uint Address
{
get;
}
public uint ThreadId
{
get;
}
public XboxExecutionState? ExecState
{
get;
}
public uint? ExceptionCode
{
get;
}
public DebugEventArgs(XboxDebugEventType eventType, string message = "", uint address = 0,
uint threadId = 0, XboxExecutionState? execState = null, uint? exceptionCode = null)
{
EventType = eventType;
Message = message;
Address = address;
ThreadId = threadId;
ExecState = execState;
ExceptionCode = exceptionCode;
}
}
}