Expand Minimize
This topic has not yet been rated - Rate this topic

Observable.ToAsync(T, TResult) Method (Func(T, TResult), IScheduler)

Converts the function into an asynchronous function.

Namespace:  System.Reactive.Linq
Assembly:  System.Reactive (in System.Reactive.dll)
static member ToAsync : 
        function:Func<'T, 'TResult> * 
        scheduler:IScheduler -> Func<'T, IObservable<'TResult>> 

Type Parameters

T

The type.

TResult

The type of result.

Parameters

function
Type: System.Func(T, TResult)
The function used to synchronization.
scheduler
Type: System.Reactive.Concurrency.IScheduler
The scheduler used to synchronization.

Return Value

Type: System.Func(T, IObservable(TResult))
The function into an asynchronous function.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Func(T, TResult). When you use instance method syntax to call this method, omit the first parameter. For more information, see http://msdn.microsoft.com/en-us/library/bb384936(v=vs.103).aspx or http://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).aspx.
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.