ProjectsAgentsModelFactory.SessionLogEvent Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A single Server-Sent Event frame emitted by the hosted agent session log stream.
Each frame contains an event field identifying the event type and a data
field carrying the payload as plain text. Although the current data payload
is JSON-formatted, its schema is not contractual β additional keys may appear
and the format may change over time. Clients should treat data as an
opaque string and optionally attempt JSON parsing.
New event types may be added in the future. Clients should gracefully
ignore unrecognized event types.
Wire format:
event: log
data: {"timestamp":"2026-03-10T09:33:17.121Z","stream":"stdout","message":"Starting server on port 18080"}
event: log
data: {"timestamp":"2026-03-10T09:34:52.714Z","stream":"status","message":"Successfully connected to container"}
public static Azure.AI.Projects.Agents.SessionLogEvent SessionLogEvent(Azure.AI.Projects.Agents.SessionLogEventType event = default, string data = default);
static member SessionLogEvent : Azure.AI.Projects.Agents.SessionLogEventType * string -> Azure.AI.Projects.Agents.SessionLogEvent
Public Shared Function SessionLogEvent (Optional event As SessionLogEventType = Nothing, Optional data As String = Nothing) As SessionLogEvent
Parameters
- event
- SessionLogEventType
The SSE event type. Currently log, but additional event types may be added in the future. Clients should ignore unrecognized event types.
- data
- String
The event payload as plain text. Currently JSON-formatted but the schema is not contractual and may change.
Returns
A new SessionLogEvent instance for mocking.