DkmVariableInfoFlags Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Name | Value | Description |
---|---|---|
None | 0 | No flags are set. |
Types | 1 | Provide information about the types of variables. |
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. |
Names | 4 | Provide information about the names of variables. |
FullNames | 8 | Provide full names of the 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(). |
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. |