Share via


MultiLanguageConversationInput(IEnumerable<ConversationInput>) Constructor

Definition

Initializes a new instance of MultiLanguageConversationInput.

public MultiLanguageConversationInput (System.Collections.Generic.IEnumerable<Azure.AI.Language.Conversations.Models.ConversationInput> conversations);
new Azure.AI.Language.Conversations.Models.MultiLanguageConversationInput : seq<Azure.AI.Language.Conversations.Models.ConversationInput> -> Azure.AI.Language.Conversations.Models.MultiLanguageConversationInput
Public Sub New (conversations As IEnumerable(Of ConversationInput))

Parameters

conversations
IEnumerable<ConversationInput>

Array of conversation items Please note ConversationInput is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include TextConversation and TranscriptConversation.

Exceptions

conversations is null.

Applies to