The recording of the first ever ReactiveUI virtual conference is available on our YouTube Channel.

Qbservable.Range(IQbservableProvider, Int32, Int32)

Qbservable.Range Method (IQbservableProvider, Int32, Int32)

Generates a queryable observable sequence of integral numbers within a specified range.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Range ( _
    provider As IQbservableProvider, _
    start As Integer, _
    count As Integer _
) As IQbservable(Of Integer)
'Usage
Dim provider As IQbservableProvider
Dim start As Integer
Dim count As Integer
Dim returnValue As IQbservable(Of Integer)

returnValue = provider.Range(start, _
    count)
public static IQbservable<int> Range(
    this IQbservableProvider provider,
    int start,
    int count
)
[ExtensionAttribute]
public:
static IQbservable<int>^ Range(
    IQbservableProvider^ provider, 
    int start, 
    int count
)
static member Range : 
        provider:IQbservableProvider * 
        start:int * 
        count:int -> IQbservable<int> 
public static function Range(
    provider : IQbservableProvider, 
    start : int, 
    count : int
) : IQbservable<int>

Parameters

Return Value

Type: System.Reactive.Linq.IQbservable<Int32>
A queryable observable sequence that contains a range of sequential integral numbers.

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

Range Overload

System.Reactive.Linq Namespace

Qbservable.Range Method (IQbservableProvider, Int32, Int32, IScheduler)

Generates a queryable observable sequence of integral numbers within a specified range.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Range ( _
    provider As IQbservableProvider, _
    start As Integer, _
    count As Integer, _
    scheduler As IScheduler _
) As IQbservable(Of Integer)
'Usage
Dim provider As IQbservableProvider
Dim start As Integer
Dim count As Integer
Dim scheduler As IScheduler
Dim returnValue As IQbservable(Of Integer)

returnValue = provider.Range(start, _
    count, scheduler)
public static IQbservable<int> Range(
    this IQbservableProvider provider,
    int start,
    int count,
    IScheduler scheduler
)
[ExtensionAttribute]
public:
static IQbservable<int>^ Range(
    IQbservableProvider^ provider, 
    int start, 
    int count, 
    IScheduler^ scheduler
)
static member Range : 
        provider:IQbservableProvider * 
        start:int * 
        count:int * 
        scheduler:IScheduler -> IQbservable<int> 
public static function Range(
    provider : IQbservableProvider, 
    start : int, 
    count : int, 
    scheduler : IScheduler
) : IQbservable<int>

Parameters

Return Value

Type: System.Reactive.Linq.IQbservable<Int32>
A queryable observable sequence that contains a range of sequential integral numbers.

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

Range Overload

System.Reactive.Linq Namespace

Qbservable.Range Method

Include Protected Members
Include Inherited Members

Generates a queryable observable sequence of integral numbers within a specified range.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List

NameDescriptionPublic methodStatic memberRange(IQbservableProvider, Int32, Int32)Generates a queryable observable sequence of integral numbers within a specified range.Public methodStatic memberRange(IQbservableProvider, Int32, Int32, IScheduler)Generates a queryable observable sequence of integral numbers within a specified range.Top

See Also

Reference

Qbservable Class

System.Reactive.Linq Namespace