# DictationRecognizer

> Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.

## Definition

* **Type:** Constructor
* **Namespace:** [UnityEngine.Windows.Speech](/engine/6000.6/script-reference/unityengine/windows/speech.md)
* **Assembly:** UnityEngine.CoreModule

## DictationRecognizer()

Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.

```csharp
public DictationRecognizer()
```

### Remarks

Default confidence level is Medium. Default dictation topic constraint is Dictation.

## DictationRecognizer(ConfidenceLevel)

Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.

```csharp
public DictationRecognizer(ConfidenceLevel confidenceLevel)
```

### Parameters

**** (\[ConfidenceLevel]\(/engine/6000.6/script-reference/unityengine/windows/speech/confidencelevel)):&#x20;

### Remarks

Default confidence level is Medium. Default dictation topic constraint is Dictation.

## DictationRecognizer(DictationTopicConstraint)

Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.

```csharp
public DictationRecognizer(DictationTopicConstraint topic)
```

### Parameters

**** (\[DictationTopicConstraint]\(/engine/6000.6/script-reference/unityengine/windows/speech/dictationtopicconstraint)): The dictation topic that this dictation recognizer should optimize its recognition for.

### Remarks

Default confidence level is Medium. Default dictation topic constraint is Dictation.

## DictationRecognizer(ConfidenceLevel, DictationTopicConstraint)

Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.

```csharp
public DictationRecognizer(ConfidenceLevel minimumConfidence, DictationTopicConstraint topic)
```

### Parameters

**** (\[ConfidenceLevel]\(/engine/6000.6/script-reference/unityengine/windows/speech/confidencelevel)): The confidence level at which the recognizer will begin accepting phrases.**** (\[DictationTopicConstraint]\(/engine/6000.6/script-reference/unityengine/windows/speech/dictationtopicconstraint)): The dictation topic that this dictation recognizer should optimize its recognition for.

### Remarks

Default confidence level is Medium. Default dictation topic constraint is Dictation.
