ServicePartitionKind Enumeration
Applies To: Azure, Windows 10, Windows 8, Windows 8.1, Windows Server 2012 R2
Indicates the type of partitioning scheme that is used.
Namespace: System.Fabric
Assembly: System.Fabric (in System.Fabric.dll)
Syntax
public enum ServicePartitionKind
Members
Member name | Description | |
---|---|---|
Int64Range | Indicates that the partition is based on Int64 key ranges, and is an Int64RangePartitionInformation object that was originally created via UniformInt64RangePartitionSchemeDescription. |
|
Invalid | Indicates the partition kind is invalid. |
|
Named | Indicates that the partition is based on string names, and is a NamedPartitionInformation object, that was originally created via NamedPartitionSchemeDescription. |
|
Singleton | Indicates that the partition is based on string names, and is a SingletonPartitionInformation object, that was originally created via SingletonPartitionSchemeDescription. |
Remarks
ServicePartitionKind defines the value of the Kind property of the ServicePartitionInformation class.
See Also
Return to top