DkmRuntimeWalkNextFramesAndCheckCacheAsyncResult Struct

Definition

Result of an asynchronous DkmStackWalkContext.RuntimeWalkNextFramesAndCheckCache call.

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

Constructors

DkmRuntimeWalkNextFramesAndCheckCacheAsyncResult(DkmStackWalkFrame[], Boolean, DkmStackHash, DkmStackWalkContext, Boolean)

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

Properties

ActualStackHash

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

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.

EndOfStack

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

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.

IsCacheValid

True if the cache was valid, false if not.

Methods

CreateErrorResult(Exception)

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

Applies to