ActorId 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
ActorId(Guid) |
Initializes a new instance of ActorId class with Id value of type System.Guid. |
ActorId(Int64) |
Initializes a new instance of ActorId class with Id value of type System.Int64. |
ActorId(String) |
Initializes a new instance of ActorId class with Id value of type System.String. |
ActorId(Guid)
Initializes a new instance of ActorId class with Id value of type System.Guid.
public ActorId (Guid id);
new Microsoft.ServiceFabric.Actors.ActorId : Guid -> Microsoft.ServiceFabric.Actors.ActorId
Public Sub New (id As Guid)
Parameters
- id
- System.Guid
Value for actor id.
Applies to
ActorId(Int64)
Initializes a new instance of ActorId class with Id value of type System.Int64.
public ActorId (long id);
new Microsoft.ServiceFabric.Actors.ActorId : int64 -> Microsoft.ServiceFabric.Actors.ActorId
Public Sub New (id As Long)
Parameters
- id
- System.Int64
Value for actor id.
Applies to
ActorId(String)
Initializes a new instance of ActorId class with Id value of type System.String.
public ActorId (string id);
new Microsoft.ServiceFabric.Actors.ActorId : string -> Microsoft.ServiceFabric.Actors.ActorId
Public Sub New (id As String)
Parameters
- id
- System.String
Value for actor id.