Property Result
Result
Gets or sets the result data extracted when the session was accepted, or null if not accepted.
object? Result { get; set; }
Property Value
Remarks
This is the non-generic version of the result property. For type-safe access, cast to
IRunnable<TResult> or access the derived interface's Result property directly.
Implementations should set this in the RaiseIsRunningChanging(bool, bool) method
(when stopping, i.e., newIsRunning == false) by extracting data from
views before they are disposed.
null indicates the session was stopped without accepting (ESC key, close without action). Non-null contains the result data.