ActivityHistory
Description
Provides detailed information about activity execution. This class is sealed and cannot be inherited.
Constructors
| Constructor | Description |
|---|---|
| ActivityHistory() | Initializes a new instance of the ActivityHistory class. |
Properties
Id String
A unique identifier representing this activity execution history.
public string Id { get; }
Name String
Gets the activity's display name.
public string Name { get; }
Session Int32
Gets the session number in which the activity was executed.
public int Session { get; }
Status String
Gets the execution status of the activity.
public string Status { get; }
StartedAt DateTime
Gets the date and time when the activity started.
public DateTime? StartedAt { get; }
EndedOn DateTime
Gets the date and time when the activity ended.
public DateTime? EndedOn { get; }
Duration TimeSpan
Gets the total duration of the activity execution.
public TimeSpan Duration { get; }
ActivityId String
Gets the activity's unique identifier.
public string ActivityId { get; }
ActivityInstanceId String
Gets the unique identifier of the activity instance.
public string ActivityInstanceId { get; }
WorkflowInstanceName String
Gets the name of the workflow instance in which the activity was executed.
public string WorkflowInstanceName { get; }
WorkflowName String
Gets the name of the workflow containing the activity.
public string WorkflowName { get; }
ActivityType String
Gets the activity type.
public string ActivityType { get; }
ProcessInstanceId String
Gets the unique identifier of the process instance associated with the activity.
public string ProcessInstanceId { get; }