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)
43if (_currentFrame == null) 60T lastFrame = _currentFrame; 62_currentFrame.Previous = lastFrame; 67get { return _currentFrame; } 72get { return (T)_currentFrame.Previous; } 77get { return (T)_currentFrame.Previous.Previous; } 82T iteratorFrame = _currentFrame; 101T lastFrame = _currentFrame; 104_currentFrame.Previous = lastFrame; 115T frameToRecycle = _currentFrame; 116_currentFrame = (T)_currentFrame.Previous; 140T iteratorFrame = _currentFrame; 141sb.AppendLine("Stack: " + (_currentFrame == null ? -1 : _currentFrame.Depth + 1).ToString(CultureInfo.InvariantCulture) + " frames"); 142ShowFrame(sb, _currentFrame);