GrammarBuilder.AppendDictation Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Appends a dictation grammar to the current sequence of grammar elements.
AppendDictation() |
Appends the default dictation grammar to the current sequence of grammar elements. |
AppendDictation(String) |
Appends the specified dictation grammar to the current sequence of grammar elements. |
The AppendDictation methods allow you to append a dictation grammar as a rule to a GrammarBuilder.
For more information on dictation grammars, see DictationGrammar.
- Source:
- GrammarBuilder.cs
- Source:
- GrammarBuilder.cs
- Source:
- GrammarBuilder.cs
Appends the default dictation grammar to the current sequence of grammar elements.
public:
void AppendDictation();
public void AppendDictation();
member this.AppendDictation : unit -> unit
Public Sub AppendDictation ()
Examples
The following example creates a speech recognition grammar that incorporates dictation.
GrammarBuilder builder = new GrammarBuilder();
builder.Append("begin");
builder.AppendDictation();
builder.Append("end");
Grammar grammarWithDictation = new Grammar(builder);
grammarWithDictation.Name = "Grammar with Dictation";
Remarks
For more information on dictation grammars, see DictationGrammar.
See also
Applies to
.NET 10 (package-provided) and other versions
Product | Versions |
---|---|
.NET | 8 (package-provided), 9 (package-provided), 10 (package-provided) |
.NET Framework | 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0 (package-provided) |
- Source:
- GrammarBuilder.cs
- Source:
- GrammarBuilder.cs
- Source:
- GrammarBuilder.cs
Appends the specified dictation grammar to the current sequence of grammar elements.
public:
void AppendDictation(System::String ^ category);
public void AppendDictation(string category);
member this.AppendDictation : string -> unit
Public Sub AppendDictation (category As String)
Parameters
- category
- String
The category of the dictation grammar to append.
Examples
The following example creates a speech recognition grammar that incorporates the spelling dictation grammar rules.
GrammarBuilder builder = new GrammarBuilder();
builder.Append("begin");
builder.AppendDictation("spelling");
builder.Append("end");
Grammar grammarWithDictation = new Grammar(builder);
grammarWithDictation.Name = "Grammar with Dictation";
Remarks
To use the spelling dictation grammar, set category
to spelling
.
For more information on dictation grammars, see DictationGrammar.
See also
Applies to
.NET 10 (package-provided) and other versions
Product | Versions |
---|---|
.NET | 8 (package-provided), 9 (package-provided), 10 (package-provided) |
.NET Framework | 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0 (package-provided) |
.NET feedback
.NET is an open source project. Select a link to provide feedback: