次の方法で共有


LuisApplication コンストラクター

定義

オーバーロード

LuisApplication()

LuisApplication クラスの新しいインスタンスを初期化します。

LuisApplication(LuisService)
古い.

LuisApplication クラスの新しいインスタンスを初期化します。

LuisApplication(String)

LuisApplication クラスの新しいインスタンスを初期化します。

LuisApplication(String, String, String)

LuisApplication クラスの新しいインスタンスを初期化します。

LuisApplication()

LuisApplication クラスの新しいインスタンスを初期化します。

public LuisApplication ();
Public Sub New ()

適用対象

LuisApplication(LuisService)

注意事項

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.

LuisApplication クラスの新しいインスタンスを初期化します。

[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)

パラメーター

service
LuisService

LUIS の構成。

属性

適用対象

LuisApplication(String)

LuisApplication クラスの新しいインスタンスを初期化します。

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

パラメーター

applicationEndpoint
String

LUIS アプリケーション エンドポイント。

適用対象

LuisApplication(String, String, String)

LuisApplication クラスの新しいインスタンスを初期化します。

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)

パラメーター

applicationId
String

LUIS アプリケーション ID。

endpointKey
String

LUIS サブスクリプションまたはエンドポイント キー。

endpoint
String

のように https://westus.api.cognitive.microsoft.com使用する LUIS エンドポイント。

適用対象