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