DkmStepper.OnReturnValues Method

Definition

Raise a ReturnValues event. Components which implement the event sink interface will receive the event notification. Control will return once all components have been notified.

public:
 void OnReturnValues(System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::VisualStudio::Debugger::Evaluation::DkmRawReturnValue ^> ^ ReturnValues, bool LastValueInCurrentContext);
public void OnReturnValues (System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.VisualStudio.Debugger.Evaluation.DkmRawReturnValue> ReturnValues, bool LastValueInCurrentContext);
member this.OnReturnValues : System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.VisualStudio.Debugger.Evaluation.DkmRawReturnValue> * bool -> unit
Public Sub OnReturnValues (ReturnValues As ReadOnlyCollection(Of DkmRawReturnValue), LastValueInCurrentContext As Boolean)

Parameters

ReturnValues
ReadOnlyCollection<DkmRawReturnValue>

[In,Optional] DkmRawReturnValues recorded.

LastValueInCurrentContext
Boolean

[In] If true, it is valid to use the current thread context to evaluate the last return value. This is true only in the case immediately after processing the return instruction, and so should only be set if raising this event immediately before, and on the same thread, as the StepComplete event.

Applies to