次の方法で共有


JSONEntity コンストラクター

定義

オーバーロード

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

JSONEntity()

ソース:
JSONEntity.cs
ソース:
JSONEntity.cs
public JSONEntity ();
Public Sub New ()

適用対象

JSONEntity(Int32, Int32, String, String)

ソース:
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)

パラメーター

startPos
Int32
endPos
Int32
entity
String
role
String

適用対象

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

ソース:
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)

パラメーター

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

適用対象