DkmCallStackFilterOptions Enum

Definition

Options for how the call stack should be filtered.

This enumeration supports a bitwise combination of its member values.

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

Fields

Name Value Description
None 0

No filter option flags are set.

FilterHiddenFrames 1

Remove frames from the call stack which are in hidden code.

FilterNonuserCode 2

Remove non-user code from the call stack.

IncludeAsyncFrames 4

Indicates that async frames should be included in the call stack.

ShowTopNonUserBlock 8

If JustMyCode is enabled, indicates that the frames on the topmost block of nonuser code should still be shown.

HideNonUserExceptionImplementationFrames 16

If JustMyCode is enabled and ShowTopNonUserBlock is also specified, indicates that frames involved with the implementation of throwing an exception should still be collapsed.

FilterInteractiveFrames 32

Removes frames from the call stack that are interactive.

Applies to