ListElement Constructors

Definition

Overloads

ListElement()

Initializes a new instance of the ListElement class.

ListElement(String, IList<String>)

Initializes a new instance of the ListElement class.

ListElement()

Initializes a new instance of the ListElement class.

public ListElement ();
Public Sub New ()

Applies to

ListElement(String, IList<String>)

Initializes a new instance of the ListElement class.

public ListElement (string canonicalForm, System.Collections.Generic.IList<string> synonyms = default);
new Microsoft.Bot.Builder.AI.LuisV3.ListElement : string * System.Collections.Generic.IList<string> -> Microsoft.Bot.Builder.AI.LuisV3.ListElement
Public Sub New (canonicalForm As String, Optional synonyms As IList(Of String) = Nothing)

Parameters

canonicalForm
String

The canonical form of the sub-list.

synonyms
IList<String>

The synonyms of the canonical form.

Applies to