Click or drag to resize
IReactiveT Interface
The return value of an asynchronous operation, which produces a result. The result can be available before the operation has completed.

Namespace: AccessFlow
Assembly: AccessFlow (in AccessFlow.dll) Version: 1.0.0.2 (1.0.0.2)
Syntax
public interface IReactive<out T>

Type Parameters

T
The type of the result.

The IReactiveT type exposes the following members.

Properties
  NameDescription
Public propertyProcessTask
The execution of the operation. Needs to be awaited so that no exceptions are ignored.
Public propertyResult
The productive result of the operation.
Top
See Also