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)
250private static DkmClrDebuggerBrowsableAttributeState ConvertBrowsableState(DebuggerBrowsableState state) 255return DkmClrDebuggerBrowsableAttributeState.Never; 257return DkmClrDebuggerBrowsableAttributeState.Collapsed; 259return DkmClrDebuggerBrowsableAttributeState.RootHidden;
src\ExpressionEvaluator\Core\Source\ResultProvider\Expansion\MemberExpansion.cs (2)
233case DkmClrDebuggerBrowsableAttributeState.RootHidden: 241case 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 (7)
64foreach (var browsableStateValue in browsableState.Values) 66if (browsableStateValue == DkmClrDebuggerBrowsableAttributeState.RootHidden) 157DkmClrDebuggerBrowsableAttributeState? browsableStateValue = null; 160DkmClrDebuggerBrowsableAttributeState value; 565private static Dictionary<string, DkmClrDebuggerBrowsableAttributeState> GetDebuggerBrowsableAttributeState(this DkmClrType type) 567Dictionary<string, DkmClrDebuggerBrowsableAttributeState> result = null; 575result ??= new Dictionary<string, DkmClrDebuggerBrowsableAttributeState>();