Прочетете на английски Редактиране

Споделяне чрез


GrammarBuilder.AppendDictation Method

Definition

Appends a dictation grammar to the current sequence of grammar elements.

Overloads

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.

Remarks

The AppendDictation methods allow you to append a dictation grammar as a rule to a GrammarBuilder.

For more information on dictation grammars, see DictationGrammar.

AppendDictation()

Source:
GrammarBuilder.cs
Source:
GrammarBuilder.cs
Source:
GrammarBuilder.cs

Appends the default dictation grammar to the current sequence of grammar elements.

C#
public void AppendDictation();

Examples

The following example creates a speech recognition grammar that incorporates dictation.

C#
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) и други версии
Продукт Версии
.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)

AppendDictation(String)

Source:
GrammarBuilder.cs
Source:
GrammarBuilder.cs
Source:
GrammarBuilder.cs

Appends the specified dictation grammar to the current sequence of grammar elements.

C#
public void AppendDictation(string category);

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.

C#
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) и други версии
Продукт Версии
.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)