Share via


ServicePartitionKey Constructors

Definition

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