Class GraphExecutionResult
Results from graph execution.
public sealed class GraphExecutionResult
- Inheritance
-
GraphExecutionResult
- Inherited Members
Properties
EndTime
Gets or sets the execution end time.
public DateTime EndTime { get; set; }
Property Value
Error
Gets or sets any error that occurred during execution.
public Exception? Error { get; set; }
Property Value
ErrorMessage
Gets or sets the error message if execution failed.
public string? ErrorMessage { get; set; }
Property Value
ExecutionId
Gets or sets the unique execution identifier.
public string ExecutionId { get; set; }
Property Value
ExecutionTimeMs
Gets or sets the execution time in milliseconds.
public double ExecutionTimeMs { get; set; }
Property Value
GraphName
Gets or sets the graph name.
public string GraphName { get; set; }
Property Value
IsSuccess
Gets a value indicating whether the execution was successful.
public bool IsSuccess { get; }
Property Value
Metadata
Gets or sets additional execution metadata.
public Dictionary<string, object> Metadata { get; }
Property Value
StartTime
Gets or sets the execution start time.
public DateTime StartTime { get; set; }
Property Value
State
Gets or sets the execution state.
public GraphExecutionState State { get; set; }
Property Value
Success
Gets or sets whether the execution was successful.
public bool Success { get; set; }