4 references to DebuggerDisplayProxy
System.Xml (4)
System\Xml\XPath\Internal\XPathArrayIterator.cs (1)
77private object debuggerDisplayProxy { get { return index < 1 ? null : (object)new XPathNavigator.DebuggerDisplayProxy(Current); } }
System\Xml\XPath\XPathNavigator.cs (1)
1880private object debuggerDisplayProxy { get { return new DebuggerDisplayProxy(this); } }
System\Xml\XPath\XPathNodeIterator.cs (2)
38private object debuggerDisplayProxy { get { return Current == null ? null : (object)new XPathNavigator.DebuggerDisplayProxy(Current); } } 107sb.Append(new XPathNavigator.DebuggerDisplayProxy(nodeIterator.Current).ToString());