AgentResponseUpdateEvent Constructors

Definition

Overloads

Name Description
AgentResponseUpdateEvent(String, AgentResponseUpdate)

Initializes a new instance of the AgentResponseUpdateEvent class.

AgentResponseUpdateEvent(String, AgentResponseUpdate, OutputTag)

Initializes a new instance of the AgentResponseUpdateEvent class with the given output tag.

AgentResponseUpdateEvent(String, AgentResponseUpdate, IEnumerable<OutputTag>)

Initializes a new instance of the AgentResponseUpdateEvent class with the given output tags.

AgentResponseUpdateEvent(String, AgentResponseUpdate)

Initializes a new instance of the AgentResponseUpdateEvent class.

public AgentResponseUpdateEvent(string executorId, Microsoft.Agents.AI.AgentResponseUpdate update);
new Microsoft.Agents.AI.Workflows.AgentResponseUpdateEvent : string * Microsoft.Agents.AI.AgentResponseUpdate -> Microsoft.Agents.AI.Workflows.AgentResponseUpdateEvent
Public Sub New (executorId As String, update As AgentResponseUpdate)

Parameters

executorId
String

The identifier of the executor that generated this event.

update
AgentResponseUpdate

The agent run response update.

Applies to

AgentResponseUpdateEvent(String, AgentResponseUpdate, OutputTag)

Initializes a new instance of the AgentResponseUpdateEvent class with the given output tag.

public AgentResponseUpdateEvent(string executorId, Microsoft.Agents.AI.AgentResponseUpdate update, Microsoft.Agents.AI.Workflows.OutputTag tag);
new Microsoft.Agents.AI.Workflows.AgentResponseUpdateEvent : string * Microsoft.Agents.AI.AgentResponseUpdate * Microsoft.Agents.AI.Workflows.OutputTag -> Microsoft.Agents.AI.Workflows.AgentResponseUpdateEvent
Public Sub New (executorId As String, update As AgentResponseUpdate, tag As OutputTag)

Parameters

executorId
String

The identifier of the executor that generated this event.

update
AgentResponseUpdate

The agent run response update.

tag
OutputTag

The output tag to associate with this event.

Applies to

AgentResponseUpdateEvent(String, AgentResponseUpdate, IEnumerable<OutputTag>)

Initializes a new instance of the AgentResponseUpdateEvent class with the given output tags.

public AgentResponseUpdateEvent(string executorId, Microsoft.Agents.AI.AgentResponseUpdate update, System.Collections.Generic.IEnumerable<Microsoft.Agents.AI.Workflows.OutputTag>? tags);
new Microsoft.Agents.AI.Workflows.AgentResponseUpdateEvent : string * Microsoft.Agents.AI.AgentResponseUpdate * seq<Microsoft.Agents.AI.Workflows.OutputTag> -> Microsoft.Agents.AI.Workflows.AgentResponseUpdateEvent
Public Sub New (executorId As String, update As AgentResponseUpdate, tags As IEnumerable(Of OutputTag))

Parameters

executorId
String

The identifier of the executor that generated this event.

update
AgentResponseUpdate

The agent run response update.

tags
IEnumerable<OutputTag>

The output tags to associate with this event. May be null or empty.

Applies to