共用方式為


UniformInt64RangePartitionScheme Constructors

Definition

Overloads

UniformInt64RangePartitionScheme()

Initializes a new instance of the UniformInt64RangePartitionScheme class.

UniformInt64RangePartitionScheme(Int32, Int64, Int64)

Initializes a new instance of the UniformInt64RangePartitionScheme class.

UniformInt64RangePartitionScheme()

Initializes a new instance of the UniformInt64RangePartitionScheme class.

public UniformInt64RangePartitionScheme ();
Public Sub New ()

Applies to

UniformInt64RangePartitionScheme(Int32, Int64, Int64)

Initializes a new instance of the UniformInt64RangePartitionScheme class.

public UniformInt64RangePartitionScheme (int count, long lowKey, long highKey);
new Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.UniformInt64RangePartitionScheme : int * int64 * int64 -> Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.UniformInt64RangePartitionScheme
Public Sub New (count As Integer, lowKey As Long, highKey As Long)

Parameters

count
Int32

The number of partitions.

lowKey
Int64

The lower bound of the partition key range that should be split between the partition ‘Count’

highKey
Int64

The upper bound of the partition key range that should be split between the partition ‘Count’

Applies to