1 write to _stack
System.Xaml (1)
System\Xaml\Parser\XamlScannerStack.cs (1)
32_stack = new Stack<XamlScannerFrame>();
19 references to _stack
System.Xaml (19)
System\Xaml\Parser\XamlScannerStack.cs (19)
33_stack.Push( new XamlScannerFrame(null, null) ); 40_stack.Push(new XamlScannerFrame(type, ns)); 46_stack.Pop(); 51get { return _stack.Count - 1; } 56get { return (_stack.Count == 0) ? null : _stack.Peek().XamlType; } 61get { return (_stack.Count == 0) ? null : _stack.Peek().TypeNamespace; } 66get { return (_stack.Count == 0) ? null : _stack.Peek().XamlProperty; } 67set { _stack.Peek().XamlProperty = value; } 72get { return (_stack.Count == 0) ? false : _stack.Peek().XmlSpacePreserve; } 75Debug.Assert(_stack.Count != 0); 76_stack.Peek().XmlSpacePreserve = value; 82get { return (_stack.Count == 0) ? false : _stack.Peek().InContent; } 85Debug.Assert(_stack.Count != 0); 86_stack.Peek().InContent = value;