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