DkmSingleStepRequest.Create(Guid, DkmThread) Method

Definition

Create a new DkmSingleStepRequest object instance.

public:
 static Microsoft::VisualStudio::Debugger::Stepping::DkmSingleStepRequest ^ Create(Guid SourceId, Microsoft::VisualStudio::Debugger::DkmThread ^ Thread);
public static Microsoft.VisualStudio.Debugger.Stepping.DkmSingleStepRequest Create (Guid SourceId, Microsoft.VisualStudio.Debugger.DkmThread Thread);
static member Create : Guid * Microsoft.VisualStudio.Debugger.DkmThread -> Microsoft.VisualStudio.Debugger.Stepping.DkmSingleStepRequest
Public Shared Function Create (SourceId As Guid, Thread As DkmThread) As DkmSingleStepRequest

Parameters

SourceId
Guid

[In] Identifies the source of an object. SourceIds are used to enable filtering in scenarios when multiple components may be creating instances of a class. For example, source ids can be used to determine if a breakpoint comes from the AD7 AL (ex: user breakpoint, or other breakpoint visible at the SDM level) instead of a breakpoint which may be created by another component (for example an internal breakpoint used for stepping).

Thread
DkmThread

[In] DkmThread represents a thread running in the target process.

Returns

[Out] Result of this method call.

Applies to