5 instantiations of DebuggerDisplayItemInfo
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (5)
src\ExpressionEvaluator\Core\Source\ResultProvider\Helpers\DebuggerDisplayInfo.cs (5)
65value = new DebuggerDisplayItemInfo(favoritesInfo.DisplayString, m_targetType); 67new DebuggerDisplayItemInfo(favoritesInfo.SimpleDisplayString, m_targetType) : null; 88name = new DebuggerDisplayItemInfo(attribute.Name, attributeTarget); 94value = new DebuggerDisplayItemInfo(attribute.Value, attributeTarget); 100typeName = new DebuggerDisplayItemInfo(attribute.TypeName, attributeTarget);
16 references to DebuggerDisplayItemInfo
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (16)
src\ExpressionEvaluator\Core\Source\ResultProvider\Helpers\DebuggerDisplayInfo.cs (15)
17private readonly DebuggerDisplayItemInfo m_value; 18private readonly DebuggerDisplayItemInfo m_simpleValue; 22public readonly DebuggerDisplayItemInfo Name; 23public readonly DebuggerDisplayItemInfo TypeName; 32DebuggerDisplayItemInfo name, 33DebuggerDisplayItemInfo value, 34DebuggerDisplayItemInfo simpleValue, 35DebuggerDisplayItemInfo typeName, 48public DebuggerDisplayItemInfo GetValue(DkmInspectionContext inspectionContext) 60var value = m_value; 61var simpleValue = m_simpleValue; 81var name = Name; 82var value = m_value; 83var simpleValue = m_simpleValue; 84var typeName = TypeName;
src\ExpressionEvaluator\Core\Source\ResultProvider\ResultProvider.cs (1)
825DebuggerDisplayItemInfo displayInfo,