Class Range
Represents an operator that generates an observable sequence of integer numbers within a specified range.
The entire sequence of numbers in the range is emitted immediately upon subscription. If another sequence is provided as an input to Range, the entire sequence of numbers will be emitted once for each notification in the source sequence.
public class Range : Source<int>
- Inheritance
-
Range
- Inherited Members
Properties
- Count
Gets or sets the number of sequential integers to generate.
- Start
Gets or sets the value of the first integer in the sequence.
Methods
- Generate()
Generates an observable sequence of integer numbers within a specified range.
- Generate<TSource>(IObservable<TSource>)
Generates an observable sequence of integer numbers within a specified range whenever the source sequence emits a notification.