Jaa


LuisApplication Constructors

Definition

Overloads

LuisApplication()

Initializes a new instance of the LuisApplication class.

LuisApplication(LuisService)
Obsolete.

Initializes a new instance of the LuisApplication class.

LuisApplication(String)

Initializes a new instance of the LuisApplication class.

LuisApplication(String, String, String)

Initializes a new instance of the LuisApplication class.

LuisApplication()

Initializes a new instance of the LuisApplication class.

public LuisApplication ();
Public Sub New ()

Applies to

LuisApplication(LuisService)

Caution

The LuisService class is obsolete and it will be removed in a future version of the framework, use LuisApplication(string applicationId, string endpointKey, string endpoint) instead.

Initializes a new instance of the LuisApplication class.

[System.Obsolete("The LuisService class is obsolete and it will be removed in a future version of the framework, use LuisApplication(string applicationId, string endpointKey, string endpoint) instead.", false)]
public LuisApplication (Microsoft.Bot.Configuration.LuisService service);
[<System.Obsolete("The LuisService class is obsolete and it will be removed in a future version of the framework, use LuisApplication(string applicationId, string endpointKey, string endpoint) instead.", false)>]
new Microsoft.Bot.Builder.AI.Luis.LuisApplication : Microsoft.Bot.Configuration.LuisService -> Microsoft.Bot.Builder.AI.Luis.LuisApplication
Public Sub New (service As LuisService)

Parameters

service
LuisService

LUIS configuration.

Attributes

Applies to

LuisApplication(String)

Initializes a new instance of the LuisApplication class.

public LuisApplication (string applicationEndpoint);
new Microsoft.Bot.Builder.AI.Luis.LuisApplication : string -> Microsoft.Bot.Builder.AI.Luis.LuisApplication
Public Sub New (applicationEndpoint As String)

Parameters

applicationEndpoint
String

LUIS application endpoint.

Applies to

LuisApplication(String, String, String)

Initializes a new instance of the LuisApplication class.

public LuisApplication (string applicationId, string endpointKey, string endpoint);
new Microsoft.Bot.Builder.AI.Luis.LuisApplication : string * string * string -> Microsoft.Bot.Builder.AI.Luis.LuisApplication
Public Sub New (applicationId As String, endpointKey As String, endpoint As String)

Parameters

applicationId
String

LUIS application ID.

endpointKey
String

LUIS subscription or endpoint key.

endpoint
String

LUIS endpoint to use like https://westus.api.cognitive.microsoft.com.

Applies to