Delen via


JSONEntity Constructors

Definition

Overloads

JSONEntity()
JSONEntity(Int32, Int32, String, String)
JSONEntity(Int32, Int32, String, String, IList<JSONEntity>)

JSONEntity()

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

Applies to

JSONEntity(Int32, Int32, String, String)

Source:
JSONEntity.cs
public JSONEntity (int startPos, int endPos, string entity, string role = default);
new Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JSONEntity : int * int * string * string -> Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JSONEntity
Public Sub New (startPos As Integer, endPos As Integer, entity As String, Optional role As String = Nothing)

Parameters

startPos
Int32
endPos
Int32
entity
String
role
String

Applies to

JSONEntity(Int32, Int32, String, String, IList<JSONEntity>)

Source:
JSONEntity.cs
public JSONEntity (int startPos, int endPos, string entity, string role = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JSONEntity> children = default);
new Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JSONEntity : int * int * string * string * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JSONEntity> -> Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JSONEntity
Public Sub New (startPos As Integer, endPos As Integer, entity As String, Optional role As String = Nothing, Optional children As IList(Of JSONEntity) = Nothing)

Parameters

startPos
Int32
endPos
Int32
entity
String
role
String
children
IList<JSONEntity>

Applies to