WorkflowFunctionDescriptor
Namespace AgentPrism · Assembly
AgentPrism.Abstractions.dllDescribes a function node registered in code.
public sealed record WorkflowFunctionDescriptor : IEquatable<WorkflowFunctionDescriptor>Inheritance
Section titled “Inheritance”object ← WorkflowFunctionDescriptor
Implements
Section titled “Implements”IEquatable<WorkflowFunctionDescriptor>
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”WorkflowFunctionDescriptor()
Section titled “ WorkflowFunctionDescriptor()”public WorkflowFunctionDescriptor()Properties
Section titled “Properties”Description
Section titled “ Description”Gets the short description of what the function does.
public string? Description { get; init; }Property Value
Section titled “Property Value”InputType
Section titled “ InputType”Gets the CLR type the function accepts as input.
public required Type InputType { get; init; }Property Value
Section titled “Property Value”Gets the function’s unique name. Serves as the key a workflow node points to.
public required string Name { get; init; }Property Value
Section titled “Property Value”OutputType
Section titled “ OutputType”Gets the CLR type the function returns.
public required Type OutputType { 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(WorkflowFunctionDescriptor?)
Section titled “ Equals(WorkflowFunctionDescriptor?)”public bool Equals(WorkflowFunctionDescriptor? other)Parameters
Section titled “Parameters”other WorkflowFunctionDescriptor?
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 ==(WorkflowFunctionDescriptor?, WorkflowFunctionDescriptor?)
Section titled “ operator ==(WorkflowFunctionDescriptor?, WorkflowFunctionDescriptor?)”public static bool operator ==(WorkflowFunctionDescriptor? left, WorkflowFunctionDescriptor? right)Parameters
Section titled “Parameters”left WorkflowFunctionDescriptor?
right WorkflowFunctionDescriptor?
Returns
Section titled “Returns”operator !=(WorkflowFunctionDescriptor?, WorkflowFunctionDescriptor?)
Section titled “ operator !=(WorkflowFunctionDescriptor?, WorkflowFunctionDescriptor?)”public static bool operator !=(WorkflowFunctionDescriptor? left, WorkflowFunctionDescriptor? right)Parameters
Section titled “Parameters”left WorkflowFunctionDescriptor?
right WorkflowFunctionDescriptor?