Sdílet prostřednictvím


DkmLoadCompleteEventDeferral.Create(DkmProcess, Guid) Method

Definition

Create a new DkmLoadCompleteEventDeferral object instance. The deferral is not initially active, call 'Add' in order to all the deferral to the list of active deferrals.

Location constraint: API must be called from a Monitor component (component level < 100,000).

This API was introduced in Visual Studio 12 Update 2 (DkmApiVersion.VS12Update2).

public:
 static Microsoft::VisualStudio::Debugger::Start::DkmLoadCompleteEventDeferral ^ Create(Microsoft::VisualStudio::Debugger::DkmProcess ^ Process, Guid Id);
public static Microsoft.VisualStudio.Debugger.Start.DkmLoadCompleteEventDeferral Create (Microsoft.VisualStudio.Debugger.DkmProcess Process, Guid Id);
static member Create : Microsoft.VisualStudio.Debugger.DkmProcess * Guid -> Microsoft.VisualStudio.Debugger.Start.DkmLoadCompleteEventDeferral
Public Shared Function Create (Process As DkmProcess, Id As Guid) As DkmLoadCompleteEventDeferral

Parameters

Process
DkmProcess

[In] DkmProcess represents a target process which is being debugged. The debugger debugs processes, so this is the basic unit of debugging. A DkmProcess can represent a system process or a virtual process such as minidumps.

Id
Guid

[In] Id to uniquely identify the deferral within a specific process.

Returns

[Out] Result of this method call.

Applies to