ข้ามไปยังเนื้อหา

Class ExecutionGraphEdgeDescriptor

เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน

Namespace: Cephalon.Abstractions.Execution
Assembly: Cephalon.Abstractions.dll

Describes one directed edge within an execution graph.

public sealed class ExecutionGraphEdgeDescriptor

objectExecutionGraphEdgeDescriptor

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

ExecutionGraphEdgeDescriptor(string, string, string?, string?, IReadOnlyDictionary<string, string>?)

Section titled “ ExecutionGraphEdgeDescriptor(string, string, string?, string?, IReadOnlyDictionary<string, string>?)”

Creates a new execution-graph edge descriptor.

[JsonConstructor]
public ExecutionGraphEdgeDescriptor(string fromNodeId, string toNodeId, string? displayName = null, string? condition = null, IReadOnlyDictionary<string, string>? metadata = null)

fromNodeId string

The source node identifier.

toNodeId string

The destination node identifier.

displayName string?

An optional operator-facing label for the edge.

condition string?

An optional condition or routing hint associated with the edge.

metadata IReadOnlyDictionary<string, string>?

Optional operator-facing metadata associated with the edge.

Gets the optional condition or routing hint for the edge.

public string? Condition { get; }

string?

Gets the optional operator-facing label for the edge.

public string? DisplayName { get; }

string?

Gets the source node identifier.

public string FromNodeId { get; }

string

Gets optional operator-facing metadata associated with the edge.

public IReadOnlyDictionary<string, string> Metadata { get; }

IReadOnlyDictionary<string, string>

Gets the destination node identifier.

public string ToNodeId { get; }

string