16 references to DkmClrDebuggerBrowsableAttributeState
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (16)
Debugger\Engine\DkmClrDebuggerBrowsableAttribute.cs (2)
23internal DkmClrDebuggerBrowsableAttribute(string targetMember, DkmClrDebuggerBrowsableAttributeState state) : 29public readonly DkmClrDebuggerBrowsableAttributeState State;
Debugger\Engine\DkmClrType.cs (4)
250private static DkmClrDebuggerBrowsableAttributeState ConvertBrowsableState(DebuggerBrowsableState state) 255return DkmClrDebuggerBrowsableAttributeState.Never; 257return DkmClrDebuggerBrowsableAttributeState.Collapsed; 259return DkmClrDebuggerBrowsableAttributeState.RootHidden;
src\ExpressionEvaluator\Core\Source\ResultProvider\Expansion\MemberExpansion.cs (2)
232case DkmClrDebuggerBrowsableAttributeState.RootHidden: 240case DkmClrDebuggerBrowsableAttributeState.Never:
src\ExpressionEvaluator\Core\Source\ResultProvider\Helpers\MemberAndDeclarationInfo.cs (2)
64public readonly DkmClrDebuggerBrowsableAttributeState? BrowsableState; 77public MemberAndDeclarationInfo(MemberInfo member, string displayName, DkmClrDebuggerBrowsableAttributeState? browsableState, DeclarationInfo info, int inheritanceLevel, bool isGenerated, bool canFavorite, bool isFavorite)
src\ExpressionEvaluator\Core\Source\ResultProvider\Helpers\TypeHelpers.cs (6)
63foreach (var browsableStateValue in browsableState.Values) 65if (browsableStateValue == DkmClrDebuggerBrowsableAttributeState.RootHidden) 156DkmClrDebuggerBrowsableAttributeState? browsableStateValue = null; 159DkmClrDebuggerBrowsableAttributeState value; 564private static Dictionary<string, DkmClrDebuggerBrowsableAttributeState> GetDebuggerBrowsableAttributeState(this DkmClrType type) 566Dictionary<string, DkmClrDebuggerBrowsableAttributeState> result = null;