DkmEvaluationResultCategory 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.
The category (ex: Data, Method, etc) of the underlying value represented by this evaluation result. This is principally used by the debugger UI to select icons in the watch and other expression evaluation windows.
public enum class DkmEvaluationResultCategory
public enum class DkmEvaluationResultCategory
enum DkmEvaluationResultCategory
public enum DkmEvaluationResultCategory
type DkmEvaluationResultCategory =
Public Enum DkmEvaluationResultCategory
- Inheritance
-
DkmEvaluationResultCategory
Fields
Name | Value | Description |
---|---|---|
Other | 0 | Indicates that the evaluation result does not belong to a category listed in this enumeration. |
Data | 1 | Indicates that the evaluation result represents data. |
Method | 2 | Indicates that the evaluation result represents a method. |
Event | 3 | Indicates that the evaluation result represents a event. |
Property | 4 | Indicates that the evaluation result represents a property. |
Class | 5 | Indicates that the evaluation result represents a class. |
Interface | 6 | Indicates that the evaluation result represents an interface. |
BaseClass | 7 | Node in the evaluation result tree to access fields/properties/etc of a base class. |
InnerClass | 8 | Node in the evaluation result tree to access fields/properties/etc of an inner class. |
MostDerivedClass | 9 | Node in the evaluation result tree to access fields/properties/etc of the most derived class. |