DkmCustomMessage.SendLower Method

Definition

Overloads

SendLower()

Sends a message to a listening component which is lower in the hierarchy.

SendLower(DkmWorkList, DkmCompletionRoutine<DkmSendLowerAsyncResult>)

Sends a message to a listening component which is lower in the hierarchy.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

SendLower()

Sends a message to a listening component which is lower in the hierarchy.

public:
 Microsoft::VisualStudio::Debugger::DkmCustomMessage ^ SendLower();
public:
 Microsoft::VisualStudio::Debugger::DkmCustomMessage ^ SendLower();
Microsoft::VisualStudio::Debugger::DkmCustomMessage SendLower();
public Microsoft.VisualStudio.Debugger.DkmCustomMessage SendLower ();
public Microsoft.VisualStudio.Debugger.DkmCustomMessage? SendLower ();
member this.SendLower : unit -> Microsoft.VisualStudio.Debugger.DkmCustomMessage
Public Function SendLower () As DkmCustomMessage

Returns

[Out,Optional] Message sent back from the implementation.

Applies to

SendLower(DkmWorkList, DkmCompletionRoutine<DkmSendLowerAsyncResult>)

Sends a message to a listening component which is lower in the hierarchy.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

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

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmSendLowerAsyncResult>

Routine to fire when the request is complete. If the request is successfully appended to the work list, this will always fire (including when the operation is canceled). This will never fire if appending the work item fails.

Applies to