DkmStackWalkFrameAnnotation.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(Guid, UInt64) |
Create a new DkmStackWalkFrameAnnotation object instance. |
Create(Guid, UInt64, Object) |
Create a new DkmStackWalkFrameAnnotation object instance. This API was introduced in Visual Studio 15 Update 8 (DkmApiVersion.VS15Update8). |
Create(Guid, UInt64)
Create a new DkmStackWalkFrameAnnotation object instance.
public:
static Microsoft::VisualStudio::Debugger::CallStack::DkmStackWalkFrameAnnotation ^ Create(Guid Id, System::UInt64 Value);
public static Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrameAnnotation Create (Guid Id, ulong Value);
static member Create : Guid * uint64 -> Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrameAnnotation
Public Shared Function Create (Id As Guid, Value As ULong) As DkmStackWalkFrameAnnotation
Parameters
- Id
- Guid
[In] The Guid that uniquely identifies this annotation flag. This is specific to the creator of the stack walk frame.
- Value
- UInt64
[In] The value of this annotation. The meaning of this value is specific to the creator.
Returns
[Out] Result of this method call.
Applies to
Create(Guid, UInt64, Object)
Create a new DkmStackWalkFrameAnnotation object instance.
This API was introduced in Visual Studio 15 Update 8 (DkmApiVersion.VS15Update8).
public:
static Microsoft::VisualStudio::Debugger::CallStack::DkmStackWalkFrameAnnotation ^ Create(Guid Id, System::UInt64 Value, System::Object ^ VariantValue);
public static Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrameAnnotation Create (Guid Id, ulong Value, object VariantValue);
public static Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrameAnnotation Create (Guid Id, ulong Value, object? VariantValue);
static member Create : Guid * uint64 * obj -> Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrameAnnotation
Public Shared Function Create (Id As Guid, Value As ULong, VariantValue As Object) As DkmStackWalkFrameAnnotation
Parameters
- Id
- Guid
[In] The Guid that uniquely identifies this annotation flag. This is specific to the creator of the stack walk frame.
- Value
- UInt64
[In] The value of this annotation. The meaning of this value is specific to the creator.
- VariantValue
- Object
[In,Optional] A variant value of the annotation. The meaning of this value is specific to the creator.
Returns
[Out] Result of this method call.