DkmClrInstructionSymbol.GetAsyncKickoffMethod Méthode

Définition

Surcharges

GetAsyncKickoffMethod()

Si la méthode actuelle est une méthode Async, retourne la méthode de démarrage pour cette méthode Async.

GetAsyncKickoffMethod(DkmWorkList, DkmCompletionRoutine<DkmGetAsyncKickoffMethodAsyncResult>)

Si la méthode actuelle est une méthode Async, retourne la méthode de démarrage pour cette méthode Async.

Cette méthode ajoute un nouvel élément de travail à la liste de travail spécifiée et retourne une fois que l’élément de travail a été ajouté. Le traitement réel de l’élément de travail est asynchrone. L’appelant est informé que la demande est terminée par le biais de la routine de saisie semi-automatique.

GetAsyncKickoffMethod()

Si la méthode actuelle est une méthode Async, retourne la méthode de démarrage pour cette méthode Async.

public:
 int GetAsyncKickoffMethod();
public:
 int GetAsyncKickoffMethod();
int GetAsyncKickoffMethod();
public int GetAsyncKickoffMethod ();
member this.GetAsyncKickoffMethod : unit -> int
Public Function GetAsyncKickoffMethod () As Integer

Retours

Int32

À Jeton de la méthode de démarrage.

S’applique à

GetAsyncKickoffMethod(DkmWorkList, DkmCompletionRoutine<DkmGetAsyncKickoffMethodAsyncResult>)

Si la méthode actuelle est une méthode Async, retourne la méthode de démarrage pour cette méthode Async.

Cette méthode ajoute un nouvel élément de travail à la liste de travail spécifiée et retourne une fois que l’élément de travail a été ajouté. Le traitement réel de l’élément de travail est asynchrone. L’appelant est informé que la demande est terminée par le biais de la routine de saisie semi-automatique.

public:
 void GetAsyncKickoffMethod(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Clr::DkmGetAsyncKickoffMethodAsyncResult> ^ CompletionRoutine);
public void GetAsyncKickoffMethod (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetAsyncKickoffMethodAsyncResult> CompletionRoutine);
member this.GetAsyncKickoffMethod : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetAsyncKickoffMethodAsyncResult> -> unit
Public Sub GetAsyncKickoffMethod (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetAsyncKickoffMethodAsyncResult))

Paramètres

WorkList
DkmWorkList

La tâche à laquelle ajouter le nouvel élément de travail.

CompletionRoutine
DkmCompletionRoutine<DkmGetAsyncKickoffMethodAsyncResult>

Routine à déclencher lorsque la demande est terminée. Si la demande est correctement ajoutée à la liste des tâches, cela se déclenche toujours (y compris lorsque l’opération est annulée). Cela ne se déclenchera jamais si l’ajout de l’élément de travail échoue.

S’applique à