We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9be63ec + 3d842ba commit f6338d7Copy full SHA for f6338d7
Mono.Debugging.Win32/CorEvaluationContext.cs
@@ -9,6 +9,7 @@ public class CorEvaluationContext: EvaluationContext
9
{
10
CorEval corEval;
11
CorFrame frame;
12
+ CorChain activeChain;
13
int frameIndex;
14
int evalTimestamp;
15
readonly CorBacktrace backtrace;
@@ -37,6 +38,7 @@ void CheckTimestamp ( )
37
38
thread = null;
39
frame = null;
40
corEval = null;
41
+ activeChain = null;
42
}
43
44
@@ -53,6 +55,16 @@ public CorThread Thread {
53
55
54
56
57
58
+ public CorChain ActiveChain {
59
+ get {
60
+ CheckTimestamp ();
61
+ if (activeChain == null) {
62
+ activeChain = Thread.ActiveChain;
63
+ }
64
+ return activeChain;
65
66
67
+
68
public CorFrame Frame {
69
get {
70
CheckTimestamp ();
0 commit comments