DkmMCppStaticLocalVariableSymbol.Create Method

Definition

Create a new DkmMCppStaticLocalVariableSymbol object instance.

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

This API was introduced in Visual Studio 14 Update 1 (DkmApiVersion.VS14Update1).

public:
 static Microsoft::VisualStudio::Debugger::Clr::Cpp::DkmMCppStaticLocalVariableSymbol ^ Create(System::String ^ Name, int RVA, Microsoft::VisualStudio::Debugger::Native::Cpp::DkmNativeCppType ^ Type);
public static Microsoft.VisualStudio.Debugger.Clr.Cpp.DkmMCppStaticLocalVariableSymbol Create (string Name, int RVA, Microsoft.VisualStudio.Debugger.Native.Cpp.DkmNativeCppType Type);
static member Create : string * int * Microsoft.VisualStudio.Debugger.Native.Cpp.DkmNativeCppType -> Microsoft.VisualStudio.Debugger.Clr.Cpp.DkmMCppStaticLocalVariableSymbol
Public Shared Function Create (Name As String, RVA As Integer, Type As DkmNativeCppType) As DkmMCppStaticLocalVariableSymbol

Parameters

Name
String

[In] The name of the variable.

RVA
Int32

[In] The address of the static variable, relative to the base address of the variable's module.

Type
DkmNativeCppType

[In] The type of the variable. Every static local variable is required to have a native type.

Returns

DkmMCppStaticLocalVariableSymbol

[Out] Result of this method call.

Applies to