17 references to DkmClrDebuggerBrowsableAttributeState
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (17)
Debugger\Engine\DkmClrDebuggerBrowsableAttribute.cs (2)
23internal DkmClrDebuggerBrowsableAttribute(string targetMember, DkmClrDebuggerBrowsableAttributeState state) : 29public readonly DkmClrDebuggerBrowsableAttributeState State;
Debugger\Engine\DkmClrType.cs (4)
249private static DkmClrDebuggerBrowsableAttributeState ConvertBrowsableState(DebuggerBrowsableState state) 254return DkmClrDebuggerBrowsableAttributeState.Never; 256return DkmClrDebuggerBrowsableAttributeState.Collapsed; 258return DkmClrDebuggerBrowsableAttributeState.RootHidden;
MemberAndDeclarationInfo.cs (2)
62public readonly DkmClrDebuggerBrowsableAttributeState? BrowsableState; 74public MemberAndDeclarationInfo(MemberInfo member, DkmClrDebuggerBrowsableAttributeState? browsableState, DeclarationInfo info, int inheritanceLevel, bool canFavorite, bool isFavorite)
MemberExpansion.cs (2)
232case DkmClrDebuggerBrowsableAttributeState.RootHidden: 240case DkmClrDebuggerBrowsableAttributeState.Never:
TypeHelpers.cs (7)
62foreach (var browsableStateValue in browsableState.Values) 64if (browsableStateValue == DkmClrDebuggerBrowsableAttributeState.RootHidden) 144DkmClrDebuggerBrowsableAttributeState? browsableStateValue = null; 147DkmClrDebuggerBrowsableAttributeState value; 550private static Dictionary<string, DkmClrDebuggerBrowsableAttributeState> GetDebuggerBrowsableAttributeState(this DkmClrType type) 552Dictionary<string, DkmClrDebuggerBrowsableAttributeState> result = null; 560result ??= new Dictionary<string, DkmClrDebuggerBrowsableAttributeState>();