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

ItemContentInputFile Constructors

Definition

Overloads

ItemContentInputFile()

Source:
ItemContentInputFile.cs

Initializes a new instance of ItemContentInputFile.

public ItemContentInputFile();
Public Sub New ()

Applies to

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

Source:
ItemContentInputFile.cs

Initializes a new instance of ItemContentInputFile.

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

Parameters

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

fileId
String

The ID of the file to be sent to the model.

filename
String

The name of the file to be sent to the model.

fileData
String

The content of the file to be sent to the model.

Applies to