5 writes to _currentFrame
PresentationFramework (5)
src\Shared\MS\Internal\Xaml\Context\XamlContextStack.cs (5)
34
_currentFrame
= source.CurrentFrame;
45
_currentFrame
= newFrame;
61
_currentFrame
= _creationDelegate();
102
_currentFrame
= _recycledFrame;
116
_currentFrame
= (T)_currentFrame.Previous;
15 references to _currentFrame
PresentationFramework (15)
src\Shared\MS\Internal\Xaml\Context\XamlContextStack.cs (15)
43
if (
_currentFrame
== null)
60
T lastFrame =
_currentFrame
;
62
_currentFrame
.Previous = lastFrame;
67
get { return
_currentFrame
; }
72
get { return (T)
_currentFrame
.Previous; }
77
get { return (T)
_currentFrame
.Previous.Previous; }
82
T iteratorFrame =
_currentFrame
;
101
T lastFrame =
_currentFrame
;
104
_currentFrame
.Previous = lastFrame;
115
T frameToRecycle =
_currentFrame
;
116
_currentFrame = (T)
_currentFrame
.Previous;
140
T iteratorFrame =
_currentFrame
;
141
sb.AppendLine("Stack: " + (
_currentFrame
== null ? -1 :
_currentFrame
.Depth + 1).ToString(CultureInfo.InvariantCulture) + " frames");
142
ShowFrame(sb,
_currentFrame
);