Share via


DkmNativeEESettings Class

Definition

Contains the configurations settings for the native expression evaluator.

This API was introduced in Visual Studio 17 Update 7 (DkmApiVersion.VS17Update7).

[System.Runtime.InteropServices.Guid("1ddec14d-7dbd-6b37-51e8-79decf13e26c")]
public class DkmNativeEESettings : Microsoft.VisualStudio.Debugger.DkmDataContainer
[<System.Runtime.InteropServices.Guid("1ddec14d-7dbd-6b37-51e8-79decf13e26c")>]
type DkmNativeEESettings = class
    inherit DkmDataContainer
Public Class DkmNativeEESettings
Inherits DkmDataContainer
Inheritance
DkmNativeEESettings
Attributes

Properties

IsUnloaded

Returns true if a 'unloaded' event has been raised for this object (example: DkmThread::Unload is called) or if the object has been closed. Note that care must be used when checking this status as, without synchronization, the returned status may no longer be accurate the instruction after it is read.

(Inherited from DkmDataContainer)
NatvisComplexityLimit

Maximum complexity for natvis evaluation.

This API was introduced in Visual Studio 17 Update 7 (DkmApiVersion.VS17Update7).

NatvisRecursionLimit

Maximum recursion depth for natvis evaluation.

This API was introduced in Visual Studio 17 Update 7 (DkmApiVersion.VS17Update7).

UniqueId

GUID which uniquely identifies this EE settings object.

This API was introduced in Visual Studio 17 Update 7 (DkmApiVersion.VS17Update7).

Methods

GetDataItem<T>()

Gets the instance of 'T' which has been added to this container instance. If this container does not contain a 'T', this function will return null.

(Inherited from DkmDataContainer)
GetEngineNativeEESettings()

GetEngineNativeEESettings enumerates all the created DkmNativeEESettings objects.

This API was introduced in Visual Studio 17 Update 7 (DkmApiVersion.VS17Update7).

RemoveDataItem<T>()

Remove the instance of 'T' from this container. It is usually unnecessary to call this method as a data container will automatically be emptied when the object is closed.

(Inherited from DkmDataContainer)
SetDataItem<T>(DkmDataCreationDisposition, T)

Place a new item in the data container.

(Inherited from DkmDataContainer)

Applies to