WorkflowGraphEdge
Namespace AgentPrism · Assembly
AgentPrism.Abstractions.dllRepresents the connection between two nodes.
public sealed record WorkflowGraphEdge : IEquatable<WorkflowGraphEdge>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
Section titled “Constructors”WorkflowGraphEdge()
Section titled “ WorkflowGraphEdge()”public WorkflowGraphEdge()Properties
Section titled “Properties”Gets the source node’s identifier.
public required string From { get; init; }Property Value
Section titled “Property Value”Gets the edge’s kind.
public required WorkflowEdgeKind Kind { get; init; }Property Value
Section titled “Property Value”Gets the target node’s identifier.
public required string To { get; init; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(WorkflowGraphEdge?)
Section titled “ Equals(WorkflowGraphEdge?)”public bool Equals(WorkflowGraphEdge? other)Parameters
Section titled “Parameters”other WorkflowGraphEdge?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(WorkflowGraphEdge?, WorkflowGraphEdge?)
Section titled “ operator ==(WorkflowGraphEdge?, WorkflowGraphEdge?)”public static bool operator ==(WorkflowGraphEdge? left, WorkflowGraphEdge? right)Parameters
Section titled “Parameters”left WorkflowGraphEdge?
right WorkflowGraphEdge?
Returns
Section titled “Returns”operator !=(WorkflowGraphEdge?, WorkflowGraphEdge?)
Section titled “ operator !=(WorkflowGraphEdge?, WorkflowGraphEdge?)”public static bool operator !=(WorkflowGraphEdge? left, WorkflowGraphEdge? right)Parameters
Section titled “Parameters”left WorkflowGraphEdge?
right WorkflowGraphEdge?