Share via


ResponseWebSearchCallSearchingEvent Constructors

Definition

Overloads

ResponseWebSearchCallSearchingEvent()

Source:
ResponseWebSearchCallSearchingEvent.cs

Initializes a new instance of ResponseWebSearchCallSearchingEvent for deserialization.

public ResponseWebSearchCallSearchingEvent();
Public Sub New ()

Applies to

ResponseWebSearchCallSearchingEvent(Int32, Int32, String)

Source:
ResponseWebSearchCallSearchingEvent.cs

Initializes a new instance of ResponseWebSearchCallSearchingEvent.

public ResponseWebSearchCallSearchingEvent(int sequenceNumber, int outputIndex, string itemId);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseWebSearchCallSearchingEvent : int * int * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseWebSearchCallSearchingEvent
Public Sub New (sequenceNumber As Integer, outputIndex As Integer, itemId As String)

Parameters

sequenceNumber
Int32

The sequence number for this event.

outputIndex
Int32

The index of the output item that the web search call is associated with.

itemId
String

Unique ID for the output item associated with the web search call.

Exceptions

itemId is null.

Applies to

ResponseWebSearchCallSearchingEvent(ResponseStreamEventType, Int32, IDictionary<String,BinaryData>, Int32, String)

Source:
ResponseWebSearchCallSearchingEvent.cs

Initializes a new instance of ResponseWebSearchCallSearchingEvent.

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

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 the web search call is associated with.

itemId
String

Unique ID for the output item associated with the web search call.

Applies to