DynamicList Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
DynamicList() |
Initializes a new instance of the DynamicList class. |
DynamicList(String, IList<ListElement>) |
Initializes a new instance of the DynamicList class. |
DynamicList()
Initializes a new instance of the DynamicList class.
public DynamicList ();
Public Sub New ()
Applies to
DynamicList(String, IList<ListElement>)
Initializes a new instance of the DynamicList class.
public DynamicList (string entity, System.Collections.Generic.IList<Microsoft.Bot.Builder.AI.LuisV3.ListElement> requestLists);
new Microsoft.Bot.Builder.AI.LuisV3.DynamicList : string * System.Collections.Generic.IList<Microsoft.Bot.Builder.AI.LuisV3.ListElement> -> Microsoft.Bot.Builder.AI.LuisV3.DynamicList
Public Sub New (entity As String, requestLists As IList(Of ListElement))
Parameters
- entity
- String
The name of the list entity to extend.
- requestLists
- IList<ListElement>
The lists to append on the extended list entity.