Observable.ToAsync Method (Action)

Converts the function into an asynchronous function.

Namespace:  System.Reactive.Linq
Assembly:  System.Reactive (in System.Reactive.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ToAsync ( _
    action As Action _
) As Func(Of IObservable(Of Unit))
'Usage
Dim action As Action
Dim returnValue As Func(Of IObservable(Of Unit))

returnValue = action.ToAsync()
public static Func<IObservable<Unit>> ToAsync(
    this Action action
)
[ExtensionAttribute]
public:
static Func<IObservable<Unit>^>^ ToAsync(
    Action^ action
)
static member ToAsync : 
        action:Action -> Func<IObservable<Unit>> 
public static function ToAsync(
    action : Action
) : Func<IObservable<Unit>>

Parameters

Return Value

Type: System.Func<IObservable<Unit>>
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 Action. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also

Reference

Observable Class

ToAsync Overload

System.Reactive.Linq Namespace