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