5 instantiations of DebuggerDisplayItemInfo
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider (5)
src\ExpressionEvaluator\Core\Source\ResultProvider\Helpers\DebuggerDisplayInfo.cs (5)
64value = new DebuggerDisplayItemInfo(favoritesInfo.DisplayString, m_targetType); 66new DebuggerDisplayItemInfo(favoritesInfo.SimpleDisplayString, m_targetType) : null; 87name = new DebuggerDisplayItemInfo(attribute.Name, attributeTarget); 93value = new DebuggerDisplayItemInfo(attribute.Value, attributeTarget); 99typeName = new DebuggerDisplayItemInfo(attribute.TypeName, attributeTarget);
16 references to DebuggerDisplayItemInfo
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider (16)
src\ExpressionEvaluator\Core\Source\ResultProvider\Helpers\DebuggerDisplayInfo.cs (15)
16private readonly DebuggerDisplayItemInfo m_value; 17private readonly DebuggerDisplayItemInfo m_simpleValue; 21public readonly DebuggerDisplayItemInfo Name; 22public readonly DebuggerDisplayItemInfo TypeName; 31DebuggerDisplayItemInfo name, 32DebuggerDisplayItemInfo value, 33DebuggerDisplayItemInfo simpleValue, 34DebuggerDisplayItemInfo typeName, 47public DebuggerDisplayItemInfo GetValue(DkmInspectionContext inspectionContext) 59var value = m_value; 60var simpleValue = m_simpleValue; 80var name = Name; 81var value = m_value; 82var simpleValue = m_simpleValue; 83var typeName = TypeName;
src\ExpressionEvaluator\Core\Source\ResultProvider\ResultProvider.cs (1)
823DebuggerDisplayItemInfo displayInfo,