DkmNativeCppEnumType Class

Definition

Represents a C++ enum type.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

public ref class DkmNativeCppEnumType : Microsoft::VisualStudio::Debugger::Native::Cpp::DkmNativeCppType
[System.Runtime.InteropServices.Guid("fa6768b9-8c47-512b-53b8-e615005fcacc")]
public class DkmNativeCppEnumType : Microsoft.VisualStudio.Debugger.Native.Cpp.DkmNativeCppType
[<System.Runtime.InteropServices.Guid("fa6768b9-8c47-512b-53b8-e615005fcacc")>]
type DkmNativeCppEnumType = class
    inherit DkmNativeCppType
Public Class DkmNativeCppEnumType
Inherits DkmNativeCppType
Inheritance
Attributes

Properties

Id

Unique identifier for this type, across all modules loaded in this debug session.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

(Inherited from DkmNativeCppType)
InspectionSession

The inspection session which controls the lifetime of this symbol object.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

(Inherited from DkmNativeCppType)
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)
Module

The module of this symbol.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

QualifiedName

Qualified name of this symbol. Qualifiers are separated by "::". The unqualified name always appears at the end of the qualified name.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

Qualifiers

const/volatile qualifiers on this type.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

(Inherited from DkmNativeCppType)
Size

The size, in bytes, of an object of this type.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

(Inherited from DkmNativeCppType)
TagValue

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

(Inherited from DkmNativeCppType)
UnderlyingType

The underlying type of the enumeration. This is always an integer type.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

Values

The set of values that belong to this enumeration.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

Methods

GetArrayType(Int32, DkmNativeCppCVQualifiers)

Creates a C++ array type.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

(Inherited from DkmNativeCppType)
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)
GetPointerType(DkmNativeCppCVQualifiers)

Creates a C++ pointer type.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

(Inherited from DkmNativeCppType)
GetReferenceType(Boolean, DkmNativeCppCVQualifiers)

Creates a C++ pointer type.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

(Inherited from DkmNativeCppType)
GetSymbolInterface()

Obtains a pointer to the IDiaSymbol object, when available, that backs this member. For non-class/struct/union types, a dia symbol may or may not be available, depending on how the type got created.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

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