4 references to DebuggerDisplayProxy
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathArrayIterator.cs (1)
88
private object debuggerDisplayProxy { get { return index < 1 ? null : (object)new XPathNavigator.
DebuggerDisplayProxy
(Current); } }
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (1)
2237
private object debuggerDisplayProxy { get { return new
DebuggerDisplayProxy
(this); } }
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNodeIterator.cs (2)
44
private object debuggerDisplayProxy { get { return Current == null ? null : (object)new XPathNavigator.
DebuggerDisplayProxy
(Current); } }
128
sb.Append(new XPathNavigator.
DebuggerDisplayProxy
(_nodeIterator.Current).ToString());