Udostępnij za pośrednictwem


GrammarBuilder.AppendWildcard Metoda

Definicja

Dołącza element gramatyki rozpoznawania, który pasuje do wszystkich danych wejściowych w bieżącej sekwencji elementów gramatycznych.

public:
 void AppendWildcard();
public void AppendWildcard ();
member this.AppendWildcard : unit -> unit
Public Sub AppendWildcard ()

Przykłady

Poniższy przykład tworzy gramatykę, która akceptuje dane wejściowe hasła jako symbol wieloznaczny. Przykład dołącza procedurę Grammar.SpeechRecognized obsługi zdarzeń do gramatyki, która weryfikuje dane wejściowe hasła.

private Grammar CreatePasswordGrammar()
{
  GrammarBuilder wildcardBuilder = new GrammarBuilder();
  wildcardBuilder.AppendWildcard();
  SemanticResultKey passwordKey =
    new SemanticResultKey("Password", wildcardBuilder);

  GrammarBuilder passwordBuilder =
    new GrammarBuilder("My Password is");
  passwordBuilder.Append(passwordKey);

  Grammar passwordGrammar = new Grammar(passwordBuilder);
  passwordGrammar.Name = "Password input";

  passwordGrammar.SpeechRecognized +=
    new EventHandler<SpeechRecognizedEventArgs>(
      PasswordInputHandler);

  return passwordGrammar;
}

// Handle the SpeechRecognized event for the password grammar.
private void PasswordInputHandler(object sender, SpeechRecognizedEventArgs e)
{
  if (e.Result == null) return;

  RecognitionResult result = e.Result;
  SemanticValue semantics = e.Result.Semantics;

  if (semantics.ContainsKey("Password"))
  {
    RecognizedAudio passwordAudio =
      result.GetAudioForWordRange(
        result.Words[3], result.Words[result.Words.Count - 1]);

    if (IsValidPassword(passwordAudio))
    {
      Console.WriteLine("Password accepted.");

      // Add code to handle a valid password here.
    }
    else
    {
      Console.WriteLine("Invalid password.");

      // Add code to handle an invalid password here.
    }
  }
}

// Validate the password input.
private bool IsValidPassword(RecognizedAudio passwordAudio)
{
  Console.WriteLine("Validating password.");

  // Add password validation code here.

  return false;
}

Uwagi

Element symbolu wieloznacznego jest dodawany na końcu bieżącej sekwencji elementów.

Element symboli wieloznacznych pasuje do dowolnego słowa mówionego. Nie pasuje do szumu tła ani ciszy.

Dotyczy

Zobacz też