16 references to DkmClrDebuggerBrowsableAttributeState
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (16)
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)
232
case
DkmClrDebuggerBrowsableAttributeState
.RootHidden:
240
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 (6)
63
foreach (
var
browsableStateValue in browsableState.Values)
65
if (browsableStateValue ==
DkmClrDebuggerBrowsableAttributeState
.RootHidden)
156
DkmClrDebuggerBrowsableAttributeState
? browsableStateValue = null;
159
DkmClrDebuggerBrowsableAttributeState
value;
564
private static Dictionary<string,
DkmClrDebuggerBrowsableAttributeState
> GetDebuggerBrowsableAttributeState(this DkmClrType type)
566
Dictionary<string,
DkmClrDebuggerBrowsableAttributeState
> result = null;