1 write to _stack
System.Xaml (1)
System\Xaml\Parser\XamlScannerStack.cs (1)
34_stack = new Stack<XamlScannerFrame>();
19 references to _stack
System.Xaml (19)
System\Xaml\Parser\XamlScannerStack.cs (19)
35_stack.Push( new XamlScannerFrame(null, null) ); 42_stack.Push(new XamlScannerFrame(type, ns)); 48_stack.Pop(); 53get { return _stack.Count - 1; } 58get { return (_stack.Count == 0) ? null : _stack.Peek().XamlType; } 63get { return (_stack.Count == 0) ? null : _stack.Peek().TypeNamespace; } 68get { return (_stack.Count == 0) ? null : _stack.Peek().XamlProperty; } 69set { _stack.Peek().XamlProperty = value; } 74get { return (_stack.Count == 0) ? false : _stack.Peek().XmlSpacePreserve; } 77Debug.Assert(_stack.Count != 0); 78_stack.Peek().XmlSpacePreserve = value; 84get { return (_stack.Count == 0) ? false : _stack.Peek().InContent; } 87Debug.Assert(_stack.Count != 0); 88_stack.Peek().InContent = value;