1 write to _stack
System.Xaml (1)
System\Xaml\Parser\XamlScannerStack.cs (1)
31_stack = new Stack<XamlScannerFrame>();
19 references to _stack
System.Xaml (19)
System\Xaml\Parser\XamlScannerStack.cs (19)
32_stack.Push( new XamlScannerFrame(null, null) ); 39_stack.Push(new XamlScannerFrame(type, ns)); 45_stack.Pop(); 50get { return _stack.Count - 1; } 55get { return (_stack.Count == 0) ? null : _stack.Peek().XamlType; } 60get { return (_stack.Count == 0) ? null : _stack.Peek().TypeNamespace; } 65get { return (_stack.Count == 0) ? null : _stack.Peek().XamlProperty; } 66set { _stack.Peek().XamlProperty = value; } 71get { return (_stack.Count == 0) ? false : _stack.Peek().XmlSpacePreserve; } 74Debug.Assert(_stack.Count != 0); 75_stack.Peek().XmlSpacePreserve = value; 81get { return (_stack.Count == 0) ? false : _stack.Peek().InContent; } 84Debug.Assert(_stack.Count != 0); 85_stack.Peek().InContent = value;