次の方法で共有


LuisRecognizer コンストラクター

定義

オーバーロード

LuisRecognizer(LuisRecognizerOptions, HttpClientHandler)

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

LuisRecognizer(LuisApplication, LuisPredictionOptions, Boolean, HttpClientHandler)
古い.

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

LuisRecognizer(LuisService, LuisPredictionOptions, Boolean, HttpClientHandler)
古い.

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

LuisRecognizer(String, LuisPredictionOptions, Boolean, HttpClientHandler)
古い.

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

LuisRecognizer(LuisApplication, IBotTelemetryClient, Boolean, LuisPredictionOptions, Boolean, HttpClientHandler)
古い.

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

LuisRecognizer(LuisRecognizerOptions, HttpClientHandler)

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

public LuisRecognizer (Microsoft.Bot.Builder.AI.Luis.LuisRecognizerOptions recognizerOptions, System.Net.Http.HttpClientHandler clientHandler = default);
new Microsoft.Bot.Builder.AI.Luis.LuisRecognizer : Microsoft.Bot.Builder.AI.Luis.LuisRecognizerOptions * System.Net.Http.HttpClientHandler -> Microsoft.Bot.Builder.AI.Luis.LuisRecognizer
Public Sub New (recognizerOptions As LuisRecognizerOptions, Optional clientHandler As HttpClientHandler = Nothing)

パラメーター

recognizerOptions
LuisRecognizerOptions

LUIS 認識エンジンのバージョン オプション。

clientHandler
HttpClientHandler

(省略可能)モックを許可する LUIS API 呼び出しのカスタム ハンドラー。

適用対象

LuisRecognizer(LuisApplication, LuisPredictionOptions, Boolean, HttpClientHandler)

注意事項

Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).

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

[System.Obsolete("Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).")]
public LuisRecognizer (Microsoft.Bot.Builder.AI.Luis.LuisApplication application, Microsoft.Bot.Builder.AI.Luis.LuisPredictionOptions predictionOptions = default, bool includeApiResults = false, System.Net.Http.HttpClientHandler clientHandler = default);
[<System.Obsolete("Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).")>]
new Microsoft.Bot.Builder.AI.Luis.LuisRecognizer : Microsoft.Bot.Builder.AI.Luis.LuisApplication * Microsoft.Bot.Builder.AI.Luis.LuisPredictionOptions * bool * System.Net.Http.HttpClientHandler -> Microsoft.Bot.Builder.AI.Luis.LuisRecognizer
Public Sub New (application As LuisApplication, Optional predictionOptions As LuisPredictionOptions = Nothing, Optional includeApiResults As Boolean = false, Optional clientHandler As HttpClientHandler = Nothing)

パラメーター

application
LuisApplication

テキストを認識するために使用する LUIS アプリケーション。

predictionOptions
LuisPredictionOptions

(省略可能)使用する LUIS 予測オプション。

includeApiResults
Boolean

(省略可能)未加工の LUIS API 応答を含める場合は TRUE。

clientHandler
HttpClientHandler

(省略可能)モックを許可する LUIS API 呼び出しのカスタム ハンドラー。

属性

適用対象

LuisRecognizer(LuisService, LuisPredictionOptions, Boolean, HttpClientHandler)

注意事項

Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).

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

[System.Obsolete("Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).")]
public LuisRecognizer (Microsoft.Bot.Configuration.LuisService service, Microsoft.Bot.Builder.AI.Luis.LuisPredictionOptions predictionOptions = default, bool includeApiResults = false, System.Net.Http.HttpClientHandler clientHandler = default);
[<System.Obsolete("Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).")>]
new Microsoft.Bot.Builder.AI.Luis.LuisRecognizer : Microsoft.Bot.Configuration.LuisService * Microsoft.Bot.Builder.AI.Luis.LuisPredictionOptions * bool * System.Net.Http.HttpClientHandler -> Microsoft.Bot.Builder.AI.Luis.LuisRecognizer
Public Sub New (service As LuisService, Optional predictionOptions As LuisPredictionOptions = Nothing, Optional includeApiResults As Boolean = false, Optional clientHandler As HttpClientHandler = Nothing)

パラメーター

service
LuisService

構成からの LUIS サービス。

predictionOptions
LuisPredictionOptions

(省略可能)使用する LUIS 予測オプション。

includeApiResults
Boolean

(省略可能)未加工の LUIS API 応答を含める場合は TRUE。

clientHandler
HttpClientHandler

(省略可能)モックを許可する LUIS API 呼び出しのカスタム ハンドラー。

属性

適用対象

LuisRecognizer(String, LuisPredictionOptions, Boolean, HttpClientHandler)

注意事項

Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).

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

[System.Obsolete("Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).")]
public LuisRecognizer (string applicationEndpoint, Microsoft.Bot.Builder.AI.Luis.LuisPredictionOptions predictionOptions = default, bool includeApiResults = false, System.Net.Http.HttpClientHandler clientHandler = default);
[<System.Obsolete("Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).")>]
new Microsoft.Bot.Builder.AI.Luis.LuisRecognizer : string * Microsoft.Bot.Builder.AI.Luis.LuisPredictionOptions * bool * System.Net.Http.HttpClientHandler -> Microsoft.Bot.Builder.AI.Luis.LuisRecognizer
Public Sub New (applicationEndpoint As String, Optional predictionOptions As LuisPredictionOptions = Nothing, Optional includeApiResults As Boolean = false, Optional clientHandler As HttpClientHandler = Nothing)

パラメーター

applicationEndpoint
String

に示すように https://luis.ai 、LUIS エンドポイント。

predictionOptions
LuisPredictionOptions

(省略可能)使用する LUIS 予測オプション。

includeApiResults
Boolean

(省略可能)未加工の LUIS API 応答を含める場合は TRUE。

clientHandler
HttpClientHandler

(省略可能)モックを許可する LUIS API 呼び出しのカスタム ハンドラー。

属性

適用対象

LuisRecognizer(LuisApplication, IBotTelemetryClient, Boolean, LuisPredictionOptions, Boolean, HttpClientHandler)

注意事項

Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).

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

[System.Obsolete("Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).")]
public LuisRecognizer (Microsoft.Bot.Builder.AI.Luis.LuisApplication application, Microsoft.Bot.Builder.IBotTelemetryClient telemetryClient, bool logPersonalInformation, Microsoft.Bot.Builder.AI.Luis.LuisPredictionOptions predictionOptions = default, bool includeApiResults = false, System.Net.Http.HttpClientHandler clientHandler = default);
[<System.Obsolete("Constructor is deprecated, please use LuisRecognizer(LuisRecognizerOptions recognizer).")>]
new Microsoft.Bot.Builder.AI.Luis.LuisRecognizer : Microsoft.Bot.Builder.AI.Luis.LuisApplication * Microsoft.Bot.Builder.IBotTelemetryClient * bool * Microsoft.Bot.Builder.AI.Luis.LuisPredictionOptions * bool * System.Net.Http.HttpClientHandler -> Microsoft.Bot.Builder.AI.Luis.LuisRecognizer
Public Sub New (application As LuisApplication, telemetryClient As IBotTelemetryClient, logPersonalInformation As Boolean, Optional predictionOptions As LuisPredictionOptions = Nothing, Optional includeApiResults As Boolean = false, Optional clientHandler As HttpClientHandler = Nothing)

パラメーター

application
LuisApplication

テキストを認識するために使用する LUIS アプリケーション。

telemetryClient
IBotTelemetryClient

LuisResult イベントのログ記録に使用される IBotTelemetryClient。

logPersonalInformation
Boolean

個人のインデント可能な情報を含める場合は TRUE。

predictionOptions
LuisPredictionOptions

(省略可能)使用する LUIS 予測オプション。

includeApiResults
Boolean

(省略可能)未加工の LUIS API 応答を含める場合は TRUE。

clientHandler
HttpClientHandler

(省略可能)モックを許可する LUIS API 呼び出しのカスタム ハンドラー。

属性

適用対象