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

ResponseOutputItemDoneEvent Constructors

Definition

Overloads

ResponseOutputItemDoneEvent()

Source:
ResponseOutputItemDoneEvent.cs

Initializes a new instance of ResponseOutputItemDoneEvent for deserialization.

public ResponseOutputItemDoneEvent();
Public Sub New ()

Applies to

ResponseOutputItemDoneEvent(Int32, Int32, ItemResource)

Source:
ResponseOutputItemDoneEvent.cs

Initializes a new instance of ResponseOutputItemDoneEvent.

public ResponseOutputItemDoneEvent(int sequenceNumber, int outputIndex, Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemResource item);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseOutputItemDoneEvent : int * int * Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemResource -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseOutputItemDoneEvent
Public Sub New (sequenceNumber As Integer, outputIndex As Integer, item As ItemResource)

Parameters

sequenceNumber
Int32

The sequence number for this event.

outputIndex
Int32

The index of the output item that was marked done.

Exceptions

item is null.

Applies to

ResponseOutputItemDoneEvent(ResponseStreamEventType, Int32, IDictionary<String,BinaryData>, Int32, ItemResource)

Source:
ResponseOutputItemDoneEvent.cs

Initializes a new instance of ResponseOutputItemDoneEvent.

public ResponseOutputItemDoneEvent(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseStreamEventType type, int sequenceNumber, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, int outputIndex, Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemResource item);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseOutputItemDoneEvent : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseStreamEventType * int * System.Collections.Generic.IDictionary<string, BinaryData> * int * Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemResource -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseOutputItemDoneEvent
Public Sub New (type As ResponseStreamEventType, sequenceNumber As Integer, serializedAdditionalRawData As IDictionary(Of String, BinaryData), outputIndex As Integer, item As ItemResource)

Parameters

sequenceNumber
Int32

The sequence number for this event.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

outputIndex
Int32

The index of the output item that was marked done.

Applies to