Qbservable.Never<TResult> Method

Returns a non-terminating queryable observable sequence.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Never(Of TResult) ( _
    provider As IQbservableProvider _
) As IQbservable(Of TResult)
'Usage
Dim provider As IQbservableProvider
Dim returnValue As IQbservable(Of TResult)

returnValue = provider.Never()
public static IQbservable<TResult> Never<TResult>(
    this IQbservableProvider provider
)
[ExtensionAttribute]
public:
generic<typename TResult>
static IQbservable<TResult>^ Never(
    IQbservableProvider^ provider
)
static member Never : 
        provider:IQbservableProvider -> IQbservable<'TResult> 
JScript does not support generic types and methods.

Type Parameters

  • TResult
    The type of result.

Parameters

Return Value

Type: System.Reactive.Linq.IQbservable<TResult>
A non-terminating queryable observable sequence.

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

System.Reactive.Linq Namespace