Qbservable.Start Method (IQbservableProvider, Expression<Action>)
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) _
) As IQbservable(Of Unit)
'Usage
Dim provider As IQbservableProvider
Dim action As Expression(Of Action)
Dim returnValue As IQbservable(Of Unit)
returnValue = provider.Start(action)
public static IQbservable<Unit> Start(
this IQbservableProvider provider,
Expression<Action> action
)
[ExtensionAttribute]
public:
static IQbservable<Unit>^ Start(
IQbservableProvider^ provider,
Expression<Action^>^ action
)
static member Start :
provider:IQbservableProvider *
action:Expression<Action> -> IQbservable<Unit>
public static function Start(
provider : IQbservableProvider,
action : Expression<Action>
) : IQbservable<Unit>
Parameters
- provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.
- action
Type: System.Linq.Expressions.Expression<Action>
The action used to synchronization.
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 .