DkmRuntimeWalkNextFramesAndCheckCache164AsyncResult Struct

Definition

Result of an asynchronous DkmStackWalkContext.RuntimeWalkNextFramesAndCheckCache164 call.

public value class DkmRuntimeWalkNextFramesAndCheckCache164AsyncResult
public struct DkmRuntimeWalkNextFramesAndCheckCache164AsyncResult
type DkmRuntimeWalkNextFramesAndCheckCache164AsyncResult = struct
Public Structure DkmRuntimeWalkNextFramesAndCheckCache164AsyncResult
Inheritance
DkmRuntimeWalkNextFramesAndCheckCache164AsyncResult

Constructors

DkmRuntimeWalkNextFramesAndCheckCache164AsyncResult(DkmStackWalkFrame[], Boolean, DkmStackHash164, DkmStackWalkContext, Boolean)

Creates a new result structure to hold the output from a successful call to DkmStackWalkContext.RuntimeWalkNextFramesAndCheckCache164.

Properties

ActualStackHash

[Optional] The actual hash of the call stack. This may be NULL for runtimes that don't support call stack hashing.

This API was introduced in Visual Studio 16 Update 4 (DkmApiVersion.VS16Update4).

ActualStackWalkContext

The DkmStackWalkContext object that can used later to continue the walk. If the cache is valid, this is the original context. If the cache is invalid, this will be a new DkmStackWalkContext object.

This API was introduced in Visual Studio 16 Update 4 (DkmApiVersion.VS16Update4).

EndOfStack

Returns true if the monitor reached the end of the stack.

This API was introduced in Visual Studio 16 Update 4 (DkmApiVersion.VS16Update4).

ErrorCode

HRESULT code returned from the caller. This will be DkmExceptionCode.COR_E_OPERATIONCANCELED (0x8013153B) if the operation was canceled before processing was complete.

Frames

Array of walked frames. For, unresolved frames, both InstructionAddress and Description will be null.

This API was introduced in Visual Studio 16 Update 4 (DkmApiVersion.VS16Update4).

IsCacheValid

True if the cache was valid, false if not.

This API was introduced in Visual Studio 16 Update 4 (DkmApiVersion.VS16Update4).

Methods

CreateErrorResult(Exception)

Creates a new result structure to hold the error from a failed call to DkmStackWalkContext.RuntimeWalkNextFramesAndCheckCache164.

Applies to