RangeFactory.CreateRange Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
CreateRange(List<IRingRange>) |
Cria um novo IRingRange que representa a união de todos os intervalos fornecidos. |
CreateRange(UInt32, UInt32) |
Cria um novo IRingRange que representa os valores entre o limite inferior exclusivo, |
CreateRange(List<IRingRange>)
- Origem:
- RingRange.cs
Cria um novo IRingRange que representa a união de todos os intervalos fornecidos.
public static Orleans.Runtime.IRingRange CreateRange (System.Collections.Generic.List<Orleans.Runtime.IRingRange> inRanges);
static member CreateRange : System.Collections.Generic.List<Orleans.Runtime.IRingRange> -> Orleans.Runtime.IRingRange
Public Shared Function CreateRange (inRanges As List(Of IRingRange)) As IRingRange
Parâmetros
- inRanges
- List<IRingRange>
Os intervalos.
Retornos
Um novo IRingRange que representa a união de todos os intervalos fornecidos.
Aplica-se a
CreateRange(UInt32, UInt32)
- Origem:
- RingRange.cs
Cria um novo IRingRange que representa os valores entre o limite inferior exclusivo, begin
e o limite superior inclusivo, end
.
public static Orleans.Runtime.IRingRange CreateRange (uint begin, uint end);
static member CreateRange : uint32 * uint32 -> Orleans.Runtime.IRingRange
Public Shared Function CreateRange (begin As UInteger, end As UInteger) As IRingRange
Parâmetros
- begin
- UInt32
O limite inferior exclusivo.
- end
- UInt32
O limite superior inclusivo.
Retornos
Um novo IRingRange que representa os valores entre o limite inferior exclusivo, begin
e o limite superior inclusivo, end
.