Qbservable.Range, méthode (IQbservableProvider, Int32, Int32, IScheduler)
Génère une séquence observable interrogeable de nombres intégraux dans une plage spécifiée.
Espace de noms :System.Reactive.Linq
Assemblée: System.Reactive.Providers (en System.Reactive.Providers.dll)
Syntaxe
'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>
Paramètres
- provider
Type : System.Reactive.Linq.IQbservableProvider
Fournisseur Qbservable local.
- start
Type : System.Int32
Valeur du premier entier de la séquence.
- count
Type : System.Int32
Nombre d'entiers séquentiels à générer.
- scheduler
Type : System.Reactive.Concurrency.IScheduler
Planificateur sur lequel exécuter la boucle de producteur.
Valeur de retour
Type : System.Reactive.Linq.IQbservable<Int32>
Séquence observable interrogeable qui contient une plage de nombres intégraux séquentiels.
Remarque sur l'utilisation
Dans Visual Basic et C#, vous pouvez appeler cette méthode en tant que méthode instance sur n’importe quel objet de type IQbservableProvider. Lorsque vous utilisez la syntaxe des méthodes d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez ou .