Jaa


ExternalEntity Constructors

Definition

Overloads

ExternalEntity()

Initializes a new instance of the ExternalEntity class.

ExternalEntity(String, Int32, Int32, Object)

Initializes a new instance of the ExternalEntity class.

ExternalEntity()

Initializes a new instance of the ExternalEntity class.

public ExternalEntity ();
Public Sub New ()

Applies to

ExternalEntity(String, Int32, Int32, Object)

Initializes a new instance of the ExternalEntity class.

public ExternalEntity (string entity, int start, int length, object resolution = default);
new Microsoft.Bot.Builder.AI.LuisV3.ExternalEntity : string * int * int * obj -> Microsoft.Bot.Builder.AI.LuisV3.ExternalEntity
Public Sub New (entity As String, start As Integer, length As Integer, Optional resolution As Object = Nothing)

Parameters

entity
String

The name of the entity to extend.

start
Int32

The start character index of the predicted entity.

length
Int32

The length of the predicted entity.

resolution
Object

A user supplied custom resolution to return as the entity's prediction.

Applies to