DkmEvaluationResultAccessType 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.
Specifies the access control level (public, private, etc) of the represented field/method/property. This is principally used by the debugger UI to select icons in the watch and other expression evaluation windows.
public enum class DkmEvaluationResultAccessType
public enum class DkmEvaluationResultAccessType
enum DkmEvaluationResultAccessType
public enum DkmEvaluationResultAccessType
type DkmEvaluationResultAccessType =
Public Enum DkmEvaluationResultAccessType
- Inheritance
-
DkmEvaluationResultAccessType
Fields
Name | Value | Description |
---|---|---|
None | 0 | Not applicable (the result of the expression is not a field of a class). |
Public | 1 | Indicates that the result of the expression is a public field. |
Private | 2 | Indicates that the result of the expression is a private field. |
Protected | 3 | Indicates that the result of the expression is a protected field. |
Final | 4 | Indicates that the result of the expression is a final field. |
Internal | 5 | Indicates that the result of the expression is an internal field. |