HierarchicalModel Constructors

Definition

Overloads

HierarchicalModel()
HierarchicalModel(String, IList<String>, PrebuiltDomainObject, IList<String>)
HierarchicalModel(String, IList<JsonChild>, IList<JsonModelFeatureInformation>, IList<String>, PrebuiltDomainObject)

HierarchicalModel()

Source:
HierarchicalModel.cs
Source:
HierarchicalModel.cs
public HierarchicalModel ();
Public Sub New ()

Applies to

HierarchicalModel(String, IList<String>, PrebuiltDomainObject, IList<String>)

Source:
HierarchicalModel.cs
public HierarchicalModel (string name = default, System.Collections.Generic.IList<string> children = default, Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.PrebuiltDomainObject inherits = default, System.Collections.Generic.IList<string> roles = default);
new Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.HierarchicalModel : string * System.Collections.Generic.IList<string> * Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.PrebuiltDomainObject * System.Collections.Generic.IList<string> -> Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.HierarchicalModel
Public Sub New (Optional name As String = Nothing, Optional children As IList(Of String) = Nothing, Optional inherits As PrebuiltDomainObject = Nothing, Optional roles As IList(Of String) = Nothing)

Parameters

name
String
children
IList<String>
roles
IList<String>

Applies to

HierarchicalModel(String, IList<JsonChild>, IList<JsonModelFeatureInformation>, IList<String>, PrebuiltDomainObject)

Source:
HierarchicalModel.cs
public HierarchicalModel (string name = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JsonChild> children = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JsonModelFeatureInformation> features = default, System.Collections.Generic.IList<string> roles = default, Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.PrebuiltDomainObject inherits = default);
new Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.HierarchicalModel : string * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JsonChild> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JsonModelFeatureInformation> * System.Collections.Generic.IList<string> * Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.PrebuiltDomainObject -> Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.HierarchicalModel
Public Sub New (Optional name As String = Nothing, Optional children As IList(Of JsonChild) = Nothing, Optional features As IList(Of JsonModelFeatureInformation) = Nothing, Optional roles As IList(Of String) = Nothing, Optional inherits As PrebuiltDomainObject = Nothing)

Parameters

name
String
children
IList<JsonChild>
roles
IList<String>

Applies to