Qbservable.Return<TResult> Method (IQbservableProvider, TResult)
Returns a queryable observable sequence that contains a single element with a specified value.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Return(Of TResult) ( _
provider As IQbservableProvider, _
value As TResult _
) As IQbservable(Of TResult)
'Usage
Dim provider As IQbservableProvider
Dim value As TResult
Dim returnValue As IQbservable(Of TResult)
returnValue = provider.Return(value)
public static IQbservable<TResult> Return<TResult>(
this IQbservableProvider provider,
TResult value
)
[ExtensionAttribute]
public:
generic<typename TResult>
static IQbservable<TResult>^ Return(
IQbservableProvider^ provider,
TResult value
)
static member Return :
provider:IQbservableProvider *
value:'TResult -> IQbservable<'TResult>
JScript does not support generic types and methods.
Type Parameters
- TResult
The type of result.
Parameters
- provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.
- value
Type: TResult
The single element in the resulting queryable observable sequence.
Return Value
Type: System.Reactive.Linq.IQbservable<TResult>
The queryable observable sequence containing the single specified element.
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 .