你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

RunStepStreamEvent Struct

Definition

Run step operation related streaming events.

public readonly struct RunStepStreamEvent : IEquatable<Azure.AI.Agents.Persistent.RunStepStreamEvent>
type RunStepStreamEvent = struct
Public Structure RunStepStreamEvent
Implements IEquatable(Of RunStepStreamEvent)
Inheritance
RunStepStreamEvent
Implements

Constructors

Name Description
RunStepStreamEvent(String)

Initializes a new instance of RunStepStreamEvent.

Properties

Name Description
RunStepCancelled

Event sent when a run step is cancelled. The data of this event is of type RunStep.

RunStepCompleted

Event sent when a run step is completed. The data of this event is of type RunStep.

RunStepCreated

Event sent when a new thread run step is created. The data of this event is of type RunStep.

RunStepDelta

Event sent when a run step is being streamed. The data of this event is of type RunStepDeltaChunk.

RunStepExpired

Event sent when a run step is expired. The data of this event is of type RunStep.

RunStepFailed

Event sent when a run step fails. The data of this event is of type RunStep.

RunStepInProgress

Event sent when a run step moves to in_progress status. The data of this event is of type RunStep.

Methods

Name Description
Equals(RunStepStreamEvent)

Indicates whether the current object is equal to another object of the same type.

ToString()

Returns the fully qualified type name of this instance.

Operators

Name Description
Equality(RunStepStreamEvent, RunStepStreamEvent)

Determines if two RunStepStreamEvent values are the same.

Implicit(String to RunStepStreamEvent)

Converts a String to a RunStepStreamEvent.

Inequality(RunStepStreamEvent, RunStepStreamEvent)

Determines if two RunStepStreamEvent values are not the same.

Applies to