ServicePartitionKey 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
ServicePartitionKey() |
Initializes a new instance of the ServicePartitionKey class. |
ServicePartitionKey(Int64) |
Initializes a new instance of the ServicePartitionKey class for uniform int64 partitioned service. |
ServicePartitionKey(String) |
Initializes a new instance of the ServicePartitionKey class for named partitioned services. |
ServicePartitionKey()
Initializes a new instance of the ServicePartitionKey class.
public ServicePartitionKey ();
Public Sub New ()
Applies to
ServicePartitionKey(Int64)
Initializes a new instance of the ServicePartitionKey class for uniform int64 partitioned service.
public ServicePartitionKey (long partitionKey);
new Microsoft.ServiceFabric.Services.Client.ServicePartitionKey : int64 -> Microsoft.ServiceFabric.Services.Client.ServicePartitionKey
Public Sub New (partitionKey As Long)
Parameters
- partitionKey
- Int64
Value of the int64 partition key
Applies to
ServicePartitionKey(String)
Initializes a new instance of the ServicePartitionKey class for named partitioned services.
public ServicePartitionKey (string partitionKey);
new Microsoft.ServiceFabric.Services.Client.ServicePartitionKey : string -> Microsoft.ServiceFabric.Services.Client.ServicePartitionKey
Public Sub New (partitionKey As String)
Parameters
- partitionKey
- String
Value of the named partition key
Applies to
Azure SDK for .NET