ITelemetryRecognizer Interface

Definition

Recognizer with Telemetry support.

public interface ITelemetryRecognizer : Microsoft.Bot.Builder.IRecognizer
type ITelemetryRecognizer = interface
    interface IRecognizer
Public Interface ITelemetryRecognizer
Implements IRecognizer
Derived
Implements

Properties

LogPersonalInformation

Gets a value indicating whether determines whether to log personal information that came from the user.

TelemetryClient

Gets the currently configured IBotTelemetryClient that logs the LuisResult event.

Methods

RecognizeAsync(ITurnContext, CancellationToken)

Runs an utterance through a recognizer and returns a generic recognizer result.

(Inherited from IRecognizer)
RecognizeAsync(ITurnContext, Dictionary<String,String>, Dictionary<String,Double>, CancellationToken)

Return results of the analysis (suggested intents and entities) using the turn context.

RecognizeAsync<T>(ITurnContext, CancellationToken)

Runs an utterance through a recognizer and returns a strongly-typed recognizer result.

RecognizeAsync<T>(ITurnContext, Dictionary<String,String>, Dictionary<String,Double>, CancellationToken)

Runs an utterance through a recognizer and returns a strongly-typed recognizer result.

Applies to