Class ProcessCheckpoint
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Behaviors.Patterns.Abstractions
Assembly: Cephalon.Behaviors.Patterns.dll
Represents a snapshot of a process manager’s current step and metadata.
public class ProcessCheckpointInheritance
Section titled “Inheritance”Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
Properties
Section titled “Properties”CompletedAt
Section titled “ CompletedAt”Gets the timestamp when this process completed, or null if still in progress.
public DateTimeOffset? CompletedAt { get; init; }Property Value
Section titled “Property Value”CreatedAt
Section titled “ CreatedAt”Gets the timestamp when this process was created.
public required DateTimeOffset CreatedAt { get; init; }Property Value
Section titled “Property Value”CurrentStep
Section titled “ CurrentStep”Gets the name of the current step within the process.
public required string CurrentStep { get; init; }Property Value
Section titled “Property Value”Metadata
Section titled “ Metadata”Gets additional metadata associated with this checkpoint.
public IReadOnlyDictionary<string, string> Metadata { get; init; }Property Value
Section titled “Property Value”IReadOnlyDictionary<string, string>
ProcessId
Section titled “ ProcessId”Gets the unique identifier of the process instance.
public required string ProcessId { get; init; }