DkmVariableInfoFlags Enum

Definition

Flags that indicate what information is requested for a variable.

This enumeration supports a bitwise combination of its member values.

public enum class DkmVariableInfoFlags
public enum class DkmVariableInfoFlags
enum DkmVariableInfoFlags
[System.Flags]
public enum DkmVariableInfoFlags
[<System.Flags>]
type DkmVariableInfoFlags = 
Public Enum DkmVariableInfoFlags
Inheritance
DkmVariableInfoFlags
Attributes

Fields

FullNames 8

Provide full names of the variables.

HideTemplateArguments 32

If specified, the expression evaluator will simplify template types to create a shorter frame name. Currently this is only supported by the C++ EE.

Names 4

Provide information about the names of variables.

None 0

No flags are set.

TypeAliases 2

Types names should be provided as an alias rather than in their full form. For example, return 'std::map<int,int>' instead of 'std::map<int,int,std::less<int>,std::allocator<std::pair<int const ,int> > >'. This flag is only valid when paired with the 'Types' flag.

Types 1

Provide information about the types of variables.

Values 16

Provide information about the values of variables. This flag is set for GetFrameName() when the user has toggled the option "Show Parameter Values". This flag is never set for calls to GetMethodName().

Applies to