DkmFramePseudoLocal.Create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Create(DkmCompilerId, String, DkmRuntimeInstance) |
Create a new DkmFramePseudoLocal object instance. This API was introduced in Visual Studio 15 Update 8 (DkmApiVersion.VS15Update8). |
Create(DkmCompilerId, String, DkmRuntimeInstance, Boolean) |
Create a new DkmFramePseudoLocal object instance. This API was introduced in Visual Studio 16 Update 5 (DkmApiVersion.VS16Update5). |
Create(DkmCompilerId, String, DkmRuntimeInstance)
Create a new DkmFramePseudoLocal object instance.
This API was introduced in Visual Studio 15 Update 8 (DkmApiVersion.VS15Update8).
public:
static Microsoft::VisualStudio::Debugger::Evaluation::DkmFramePseudoLocal ^ Create(Microsoft::VisualStudio::Debugger::Evaluation::DkmCompilerId CompilerId, System::String ^ Name, Microsoft::VisualStudio::Debugger::DkmRuntimeInstance ^ RuntimeInstance);
public static Microsoft.VisualStudio.Debugger.Evaluation.DkmFramePseudoLocal Create (Microsoft.VisualStudio.Debugger.Evaluation.DkmCompilerId CompilerId, string Name, Microsoft.VisualStudio.Debugger.DkmRuntimeInstance RuntimeInstance);
static member Create : Microsoft.VisualStudio.Debugger.Evaluation.DkmCompilerId * string * Microsoft.VisualStudio.Debugger.DkmRuntimeInstance -> Microsoft.VisualStudio.Debugger.Evaluation.DkmFramePseudoLocal
Public Shared Function Create (CompilerId As DkmCompilerId, Name As String, RuntimeInstance As DkmRuntimeInstance) As DkmFramePseudoLocal
Parameters
- CompilerId
- DkmCompilerId
[In] The Guid pair used to identify this PseudoLocal.
- Name
- String
[In] The name of the PseudoLocal.
- RuntimeInstance
- DkmRuntimeInstance
[In] The DkmRuntimeInstance class represents an execution environment which is loaded into a DkmProcess and which contains code to be debugged.
Returns
[Out] Result of this method call.
Applies to
Create(DkmCompilerId, String, DkmRuntimeInstance, Boolean)
Create a new DkmFramePseudoLocal object instance.
This API was introduced in Visual Studio 16 Update 5 (DkmApiVersion.VS16Update5).
public:
static Microsoft::VisualStudio::Debugger::Evaluation::DkmFramePseudoLocal ^ Create(Microsoft::VisualStudio::Debugger::Evaluation::DkmCompilerId CompilerId, System::String ^ Name, Microsoft::VisualStudio::Debugger::DkmRuntimeInstance ^ RuntimeInstance, bool HideByDefault);
public static Microsoft.VisualStudio.Debugger.Evaluation.DkmFramePseudoLocal Create (Microsoft.VisualStudio.Debugger.Evaluation.DkmCompilerId CompilerId, string Name, Microsoft.VisualStudio.Debugger.DkmRuntimeInstance RuntimeInstance, bool HideByDefault);
static member Create : Microsoft.VisualStudio.Debugger.Evaluation.DkmCompilerId * string * Microsoft.VisualStudio.Debugger.DkmRuntimeInstance * bool -> Microsoft.VisualStudio.Debugger.Evaluation.DkmFramePseudoLocal
Public Shared Function Create (CompilerId As DkmCompilerId, Name As String, RuntimeInstance As DkmRuntimeInstance, HideByDefault As Boolean) As DkmFramePseudoLocal
Parameters
- CompilerId
- DkmCompilerId
[In] The Guid pair used to identify this PseudoLocal.
- Name
- String
[In] The name of the PseudoLocal.
- RuntimeInstance
- DkmRuntimeInstance
[In] The DkmRuntimeInstance class represents an execution environment which is loaded into a DkmProcess and which contains code to be debugged.
- HideByDefault
- Boolean
[In] If true, the pseudo local is not returned with the rest of the locals and can be viewed only by evaluating the name.
Returns
[Out] Result of this method call.