DkmClrAsyncMethodLocation Enum

Definition

In an async method. all the possible locations the debugger could have stopped.

This enumeration supports a bitwise combination of its member values.

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

Fields

AtYield 8

At an yield point.

BeforeYield 4

In an await statement and before an yield point.

FirstStatement 1

First statement of an async method. We step out synchronously here.

LastStatement 16

Last statement of the method - step into or step over should turn into step out.

NonAwaitStatement 2

In an async method but not at an await expression.

None 0

Not an async method.

Applies to