Share via


SpeechToTextResponseUpdate Constructors

Definition

Overloads

Name Description
SpeechToTextResponseUpdate()

Initializes a new instance of the SpeechToTextResponseUpdate class.

SpeechToTextResponseUpdate(IList<AIContent>)

Initializes a new instance of the SpeechToTextResponseUpdate class.

SpeechToTextResponseUpdate(String)

Initializes a new instance of the SpeechToTextResponseUpdate class.

SpeechToTextResponseUpdate()

Source:
SpeechToTextResponseUpdate.cs

Initializes a new instance of the SpeechToTextResponseUpdate class.

public:
 SpeechToTextResponseUpdate();
[System.Text.Json.Serialization.JsonConstructor]
public SpeechToTextResponseUpdate();
Public Sub New ()
Attributes

Applies to

SpeechToTextResponseUpdate(IList<AIContent>)

Source:
SpeechToTextResponseUpdate.cs

Initializes a new instance of the SpeechToTextResponseUpdate class.

public:
 SpeechToTextResponseUpdate(System::Collections::Generic::IList<Microsoft::Extensions::AI::AIContent ^> ^ contents);
public SpeechToTextResponseUpdate(System.Collections.Generic.IList<Microsoft.Extensions.AI.AIContent> contents);
new Microsoft.Extensions.AI.SpeechToTextResponseUpdate : System.Collections.Generic.IList<Microsoft.Extensions.AI.AIContent> -> Microsoft.Extensions.AI.SpeechToTextResponseUpdate
Public Sub New (contents As IList(Of AIContent))

Parameters

contents
IList<AIContent>

The contents for this message.

Applies to

SpeechToTextResponseUpdate(String)

Source:
SpeechToTextResponseUpdate.cs

Initializes a new instance of the SpeechToTextResponseUpdate class.

public:
 SpeechToTextResponseUpdate(System::String ^ content);
public SpeechToTextResponseUpdate(string? content);
new Microsoft.Extensions.AI.SpeechToTextResponseUpdate : string -> Microsoft.Extensions.AI.SpeechToTextResponseUpdate
Public Sub New (content As String)

Parameters

content
String

Content of the message.

Applies to