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

FilterHiddenFrames 1

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

FilterInteractiveFrames 32
FilterNonuserCode 2

Remove non-user code from the call stack.

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.

IncludeAsyncFrames 4

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

None 0

No filter option flags are set.

ShowTopNonUserBlock 8

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

Applies to