Qbservable.Start Method (IQbservableProvider, Expression<Action>, IScheduler)

Invokes the action asynchronously.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Start ( _
    provider As IQbservableProvider, _
    action As Expression(Of Action), _
    scheduler As IScheduler _
) As IQbservable(Of Unit)
'Usage
Dim provider As IQbservableProvider
Dim action As Expression(Of Action)
Dim scheduler As IScheduler
Dim returnValue As IQbservable(Of Unit)

returnValue = provider.Start(action, _
    scheduler)
public static IQbservable<Unit> Start(
    this IQbservableProvider provider,
    Expression<Action> action,
    IScheduler scheduler
)
[ExtensionAttribute]
public:
static IQbservable<Unit>^ Start(
    IQbservableProvider^ provider, 
    Expression<Action^>^ action, 
    IScheduler^ scheduler
)
static member Start : 
        provider:IQbservableProvider * 
        action:Expression<Action> * 
        scheduler:IScheduler -> IQbservable<Unit> 
public static function Start(
    provider : IQbservableProvider, 
    action : Expression<Action>, 
    scheduler : IScheduler
) : IQbservable<Unit>

Parameters

Return Value

Type: System.Reactive.Linq.IQbservable<Unit>
The action asynchronously.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservableProvider. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also

Reference

Qbservable Class

Start Overload

System.Reactive.Linq Namespace