3 instantiations of DebuggerDisplayProxy
System.Private.Xml (3)
System\Xml\XPath\Internal\XPathArrayIterator.cs (1)
88private object? debuggerDisplayProxy { get { return index < 1 ? null : (object)new XPathNavigator.DebuggerDisplayProxy(Current!); } }
System\Xml\XPath\XPathNavigator.cs (1)
2137private object debuggerDisplayProxy { get { return new DebuggerDisplayProxy(this); } }
System\Xml\XPath\XPathNodeIterator.cs (1)
38private object? debuggerDisplayProxy { get { return Current == null ? null : (object)new XPathNavigator.DebuggerDisplayProxy(Current); } }