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