Search Results for

    Show / Hide Table of Contents

    Class AgentRunEvent

    Represents a single event from an SSE agent run stream.

    Inheritance
    object
    AgentRunEvent
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Seclai.Models
    Assembly: Seclai.dll
    Syntax
    public sealed class AgentRunEvent

    Properties

    Data

    The raw JSON data payload.

    Declaration
    public string? Data { get; set; }
    Property Value
    Type Description
    string

    Event

    The SSE event type (e.g. "init", "update", "done").

    Declaration
    public string? Event { get; set; }
    Property Value
    Type Description
    string

    Run

    The parsed AgentRunResponse if the data could be decoded, otherwise null.

    Declaration
    public AgentRunResponse? Run { get; set; }
    Property Value
    Type Description
    AgentRunResponse
    In this article
    Back to top Generated by DocFX