Click or drag to resize
ReactiveFromT Method

Namespace: AccessFlow
Assembly: AccessFlow (in AccessFlow.dll) Version: 1.0.0.2 (1.0.0.2)
Syntax
public static IReactive<T> From<T>(
	this Func<IResolver<T>, Task> content
)

Parameters

content
Type: SystemFuncIResolverT, Task
The computation to execute.

Type Parameters

T
The type of the computation result.

Return Value

Type: IReactiveT
A new IReactiveT representing the computation.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type FuncIResolverT, Task. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also