DkmStepper.OnReturnValues Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);
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.