UniformInt64RangePartitionSchemeDescription Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UniformInt64RangePartitionSchemeDescription() |
Initializes a new instance of the UniformInt64RangePartitionSchemeDescription class. |
UniformInt64RangePartitionSchemeDescription(Int32) |
Initializes a new instance of the UniformInt64RangePartitionSchemeDescription class by specifying the partition count. |
UniformInt64RangePartitionSchemeDescription(Int32, Int64, Int64) |
Initializes a new instance of the UniformInt64RangePartitionSchemeDescription class by specifying the partition count and the range values. |
UniformInt64RangePartitionSchemeDescription()
Initializes a new instance of the UniformInt64RangePartitionSchemeDescription class.
public UniformInt64RangePartitionSchemeDescription ();
Public Sub New ()
Applies to
UniformInt64RangePartitionSchemeDescription(Int32)
Initializes a new instance of the UniformInt64RangePartitionSchemeDescription class by specifying the partition count.
public UniformInt64RangePartitionSchemeDescription (int partitionCount);
new System.Fabric.Description.UniformInt64RangePartitionSchemeDescription : int -> System.Fabric.Description.UniformInt64RangePartitionSchemeDescription
Public Sub New (partitionCount As Integer)
Parameters
- partitionCount
- Int32
The number of partitions in the scheme.
Remarks
The low key of the range defaults to long.MinValue and the high key defaults to long.MaxValue.
Applies to
UniformInt64RangePartitionSchemeDescription(Int32, Int64, Int64)
Initializes a new instance of the UniformInt64RangePartitionSchemeDescription class by specifying the partition count and the range values.
public UniformInt64RangePartitionSchemeDescription (int partitionCount, long lowKey, long highKey);
new System.Fabric.Description.UniformInt64RangePartitionSchemeDescription : int * int64 * int64 -> System.Fabric.Description.UniformInt64RangePartitionSchemeDescription
Public Sub New (partitionCount As Integer, lowKey As Long, highKey As Long)
Parameters
- partitionCount
- Int32
The number of partitions in the scheme.
- lowKey
- Int64
The low key of the range.
- highKey
- Int64
The high key of the range.
Applies to
Azure SDK for .NET