Share via


IDkmCustomMessageAsyncForwardReceiver176.SendLowerAsync Method

Definition

Receives a message that was sent using the async (DkmWorkList) version of DkmCustomMessage.SendLower.

public void SendLowerAsync (Microsoft.VisualStudio.Debugger.DkmCustomMessage customMessage, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.DkmSendLowerAsyncResult> completionRoutine);
abstract member SendLowerAsync : Microsoft.VisualStudio.Debugger.DkmCustomMessage * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.DkmSendLowerAsyncResult> -> unit
Public Sub SendLowerAsync (customMessage As DkmCustomMessage, workList As DkmWorkList, completionRoutine As DkmCompletionRoutine(Of DkmSendLowerAsyncResult))

Parameters

customMessage
DkmCustomMessage

[In] Message structure used to pass information between custom debugger backend components and custom visual studio UI components (packages, add-ins, etc).

workList
DkmWorkList

WorkList which is currently being processed. This value can be used to check for cancelation or to append additional work. New work items will not begin executing until after this function returns.

completionRoutine
DkmCompletionRoutine<DkmSendLowerAsyncResult>

Routine to fire when the request is complete. This will be implicitly fired if the implementation returns failure from this interface method. The implementation must fire this method in all other scenarios.

Applies to