4 instantiations of XamlNode
System.Activities (4)
System\Activities\Debugger\XamlDebuggerXmlReader.cs (4)
529XamlNode currentNode = new XamlNode 652this.bufferedXamlNodes.Enqueue(new XamlNode { NodeType = XamlNodeType.StartMember, Member = member }); 653this.bufferedXamlNodes.Enqueue(new XamlNode { NodeType = XamlNodeType.Value, Value = value }); 654this.bufferedXamlNodes.Enqueue(new XamlNode { NodeType = XamlNodeType.EndMember, Member = member });
18 references to XamlNode
System.Activities (18)
System\Activities\Debugger\XamlDebuggerXmlReader.cs (18)
59private Stack<XamlNode> objectDeclarationRecords; 60private Dictionary<XamlNode, DocumentRange> initializationValueRanges; 61private Queue<XamlNode> bufferedXamlNodes; 63private XamlNode current; 85this.objectDeclarationRecords = new Stack<XamlNode>(); 86this.initializationValueRanges = new Dictionary<XamlNode, DocumentRange>(); 87this.bufferedXamlNodes = new Queue<XamlNode>(); 109this.initializationValueRanges = new Dictionary<XamlNode, DocumentRange>(); 115this.objectDeclarationRecords = new Stack<XamlNode>(); 116this.bufferedXamlNodes = new Queue<XamlNode>(); 244private XamlNode Current 464XamlNode startMemberNodeForValue = this.bufferedXamlNodes.Peek(); 471XamlNode currentStartObject = this.objectDeclarationRecords.Peek(); 527private static XamlNode CreateCurrentNode(XamlReader xamlReader, IXamlLineInfo xamlLineInfo) 529XamlNode currentNode = new XamlNode 543private static bool IsMarkupExtension(XamlNode node) 554private XamlNode CreateCurrentNode() 595XamlNode startNode = this.objectDeclarationRecords.Pop();