Share via


ActorId Constructors

Definition

Overloads

ActorId(Guid)

Initializes a new instance of the ActorId class with Id value of type Guid.

ActorId(Int64)

Initializes a new instance of the ActorId class with Id value of type Int64.

ActorId(String)

Initializes a new instance of the ActorId class with Id value of type String.

ActorId(Guid)

Initializes a new instance of the ActorId class with Id value of type Guid.

public ActorId (Guid id);
new Microsoft.ServiceFabric.Actors.ActorId : Guid -> Microsoft.ServiceFabric.Actors.ActorId
Public Sub New (id As Guid)

Parameters

id
Guid

Value for actor id.

Applies to

ActorId(Int64)

Initializes a new instance of the ActorId class with Id value of type Int64.

public ActorId (long id);
new Microsoft.ServiceFabric.Actors.ActorId : int64 -> Microsoft.ServiceFabric.Actors.ActorId
Public Sub New (id As Long)

Parameters

id
Int64

Value for actor id.

Applies to

ActorId(String)

Initializes a new instance of the ActorId class with Id value of type String.

public ActorId (string id);
new Microsoft.ServiceFabric.Actors.ActorId : string -> Microsoft.ServiceFabric.Actors.ActorId
Public Sub New (id As String)

Parameters

id
String

Value for actor id.

Applies to