Share via


DkmSuccessContextGroupEvaluationResult Class

Definition

The formatted result of a successful evaluation, ready to be displayed in an expression evaluation window.

public ref class DkmSuccessContextGroupEvaluationResult : Microsoft::VisualStudio::Debugger::Evaluation::Group::DkmContextGroupEvaluationResult
[System.Runtime.InteropServices.Guid("0f911a5f-f32c-2647-470c-5524bac4b351")]
public class DkmSuccessContextGroupEvaluationResult : Microsoft.VisualStudio.Debugger.Evaluation.Group.DkmContextGroupEvaluationResult
[<System.Runtime.InteropServices.Guid("0f911a5f-f32c-2647-470c-5524bac4b351")>]
type DkmSuccessContextGroupEvaluationResult = class
    inherit DkmContextGroupEvaluationResult
Public Class DkmSuccessContextGroupEvaluationResult
Inherits DkmContextGroupEvaluationResult
Inheritance
Inheritance
DkmSuccessContextGroupEvaluationResult
Attributes

Properties

Access

The access control level (public, private, etc) of the evaluation result.

Category

The category (ex: Data, Method, etc) of this evaluation result.

CustomUIVisualizers

[Optional] A list of custom viewers for this object.

EvaluationResults

Result of the evaluation on this set of threads.

(Inherited from DkmContextGroupEvaluationResult)
Flags

Flags which indicate attributes of an expression evaluation result.

FullName

[Optional] The full name of the expression this result applies to. This value is used to allow child elements to be added to the watch window (Add Watch from the context menu), and to refresh parts of the evaluation tree. As an example of how FullName differs from name, the name of the 0th element of an array in C++ is '[0]' while the full name would by 'myArrayVariable[0]'.

(Inherited from DkmContextGroupEvaluationResult)
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)
Name

The name of the expression this result applies to.

(Inherited from DkmContextGroupEvaluationResult)
RuntimeInstance

The DkmRuntimeInstance class represents an execution environment which is loaded into a DkmProcess and which contains code to be debugged.

(Inherited from DkmContextGroupEvaluationResult)
StorageType

The storage type (ex: static) of the evaluation result.

TagValue

DkmContextGroupEvaluationResult is an abstract base class. This enum indicates which derived class this object is an instance of.

(Inherited from DkmContextGroupEvaluationResult)
ThreadIds

The thread IDs for the evaluation results.

(Inherited from DkmContextGroupEvaluationResult)
Type

[Optional] A string that describes the type of the value.

TypeModifierFlags

Type modifier flags (ex: const) of the evaluation result.

UniqueId

Guid which uniquely identifies this evaluation result.

(Inherited from DkmContextGroupEvaluationResult)
Values

The formatted values for each thread.

Methods

Close()

Closes the compute thread evaluation result object to release the resources associated with it. This method must be invoked by the component which initiated the enumeration (ex: called DkmInspectionContext.EvaluateExpression, DkmEvaluationResultEnumContext.GetItems, etc).

DkmContextGroupEvaluationResult objects are automatically closed when their associated DkmRuntimeInstance object is closed.

(Inherited from DkmContextGroupEvaluationResult)
Create(ReadOnlyCollection<UInt64>, Int32, String, String, DkmRuntimeInstance, DkmEvaluationResultFlags, ReadOnlyCollection<String>, String, DkmEvaluationResultCategory, DkmEvaluationResultAccessType, DkmEvaluationResultStorageType, DkmEvaluationResultTypeModifierFlags, ReadOnlyCollection<DkmCustomUIVisualizerInfo>, DkmDataItem)

Create a new DkmSuccessContextGroupEvaluationResult object instance.

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)
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)

Explicit Interface Implementations

IDisposable.Dispose() (Inherited from DkmContextGroupEvaluationResult)

Applies to