Share via


ItemContentInputText Constructors

Definition

Overloads

Name Description
ItemContentInputText()

Initializes a new instance of ItemContentInputText for deserialization.

ItemContentInputText(String)

Initializes a new instance of ItemContentInputText.

ItemContentInputText(ItemContentType, IDictionary<String,BinaryData>, String)

Initializes a new instance of ItemContentInputText.

ItemContentInputText()

Source:
ItemContentInputText.cs

Initializes a new instance of ItemContentInputText for deserialization.

public ItemContentInputText();
Public Sub New ()

Applies to

ItemContentInputText(String)

Source:
ItemContentInputText.cs

Initializes a new instance of ItemContentInputText.

public ItemContentInputText(string text);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemContentInputText : string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemContentInputText
Public Sub New (text As String)

Parameters

text
String

The text input to the model.

Exceptions

text is null.

Applies to

ItemContentInputText(ItemContentType, IDictionary<String,BinaryData>, String)

Source:
ItemContentInputText.cs

Initializes a new instance of ItemContentInputText.

public ItemContentInputText(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemContentType type, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, string text);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemContentInputText : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemContentType * System.Collections.Generic.IDictionary<string, BinaryData> * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemContentInputText
Public Sub New (type As ItemContentType, serializedAdditionalRawData As IDictionary(Of String, BinaryData), text As String)

Parameters

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

text
String

The text input to the model.

Applies to