Condividi tramite


SrgsRule Costruttori

Definizione

Inizializza una nuova istanza della classe SrgsRule.

Overload

SrgsRule(String)

Inizializza una nuova istanza della classe SrgsRule e specifica l'identificatore per la regola.

SrgsRule(String, SrgsElement[])

Inizializza una nuova istanza della classe SrgsRule da una matrice di oggetti SrgsElement.

SrgsRule(String)

Origine:
SrgsRule.cs
Origine:
SrgsRule.cs
Origine:
SrgsRule.cs

Inizializza una nuova istanza della classe SrgsRule e specifica l'identificatore per la regola.

public:
 SrgsRule(System::String ^ id);
public SrgsRule (string id);
new System.Speech.Recognition.SrgsGrammar.SrgsRule : string -> System.Speech.Recognition.SrgsGrammar.SrgsRule
Public Sub New (id As String)

Parametri

id
String

Identificatore della regola.

Eccezioni

id è null.

id non è un identificatore di regola corretto.

Esempio

Nell'esempio seguente viene creata una grammatica che riconosce la frase "Una nazione che ha vinto la Coppa del Mondo" seguita dal nome di un paese che ha vinto la Coppa del Mondo. L'esempio crea un SrgsRule oggetto denominato winnerRule e passa l'identificatore WorldCupWinner come .String L'oggetto SrgsOneOf è costituito da una matrice di nuovi SrgsItem oggetti contenenti alternative da riconoscere dalla regola.

public void WorldSoccerWinners ()
{

  // Create an SrgsDocument, create a new rule
  // and set its scope to public.
  SrgsDocument document = new SrgsDocument();
  SrgsRule winnerRule = new SrgsRule("WorldCupWinner");
  winnerRule.Scope = SrgsRuleScope.Public;

  // Add the introduction.
  winnerRule.Elements.Add(new SrgsItem("A nation that has won the world cup is: "));

  // Create the rule for the European nations.
  SrgsOneOf oneOfEurope = new SrgsOneOf(new SrgsItem[] {new SrgsItem("England"),
    new SrgsItem("France"), new SrgsItem("Germany"), new SrgsItem("Italy")});
  SrgsRule ruleEurope = (new SrgsRule("EuropeanNations", new SrgsElement[] {oneOfEurope}));

  // Create the rule for the South American nations.
  SrgsOneOf oneOfSAmerica = new SrgsOneOf(new SrgsItem[] {new SrgsItem("Argentina"),
    new SrgsItem("Brazil"), new SrgsItem("Uruguay")});
  SrgsRule ruleSAmerica = (new SrgsRule("SouthAmericanNations", new SrgsElement[] {oneOfSAmerica}));

  // Add references to winnerRule for ruleEurope and ruleSAmerica.
  winnerRule.Elements.Add(new SrgsOneOf(new SrgsItem[] {(new SrgsItem
    (new SrgsRuleRef(ruleEurope))), new SrgsItem(new SrgsRuleRef(ruleSAmerica))}));

  // Add all the rules to the document and make winnerRule
  // the root rule of the document.
  document.Rules.Add(new SrgsRule[] {winnerRule, ruleEurope, ruleSAmerica});
  document.Root = winnerRule;
}

Commenti

Il SrgsRule costruttore inizializza la Id proprietà . L'identificatore deve essere univoco all'interno di una determinata grammatica.

Il SrgsRule costruttore genera un'eccezione FormatException nelle circostanze seguenti:

  • idnon è un nome XML valido, come definito in Extensible Markup Language (XML) 1.0 (Quinta edizione). Per parafrasare questa definizione, un nome XML valido deve iniziare con una lettera, un carattere di sottolineatura ('_') o due punti (':') e può essere seguito da zero o più caratteri NameChar (definiti anche nella specifica XML).

  • id è "NULL" o "VOID" o "GARBAGE".

  • id contiene almeno un carattere ID regola non valido. Questi caratteri sono: '?', '*', '+', '|', '(', '), '^', '$', '/', ';', '.', '=', '', '<', '>[', ']', '{', '}', '\\', ', ', '\t', '\r' e '\n'.

Vedi anche

Si applica a

SrgsRule(String, SrgsElement[])

Origine:
SrgsRule.cs
Origine:
SrgsRule.cs
Origine:
SrgsRule.cs

Inizializza una nuova istanza della classe SrgsRule da una matrice di oggetti SrgsElement.

public:
 SrgsRule(System::String ^ id, ... cli::array <System::Speech::Recognition::SrgsGrammar::SrgsElement ^> ^ elements);
public SrgsRule (string id, params System.Speech.Recognition.SrgsGrammar.SrgsElement[] elements);
new System.Speech.Recognition.SrgsGrammar.SrgsRule : string * System.Speech.Recognition.SrgsGrammar.SrgsElement[] -> System.Speech.Recognition.SrgsGrammar.SrgsRule
Public Sub New (id As String, ParamArray elements As SrgsElement())

Parametri

id
String

Identificatore della regola.

elements
SrgsElement[]

Matrice di elementi SrgsElement.

Eccezioni

id è null.

elements è null.

id non è un identificatore di regola corretto.

Esempio

Nell'esempio seguente viene creata una grammatica che riconosce la frase "Una nazione che ha vinto la Coppa del Mondo" seguita dal nome di un paese che ha vinto la Coppa del Mondo. Nell'esempio viene creata una regola pubblica denominata WorldCupWinner. L'esempio crea quindi due SrgsRule oggetti, ruleEurope e ruleSAmerica, passando un String oggetto per l'identificatore della regola e una SrgsElement matrice contenente un SrgsOneOf oggetto . Successivamente, nell'esempio vengono aggiunti riferimenti a ruleEurope e ruleSAmerica dalla regola WorldCupWinner.

public void WorldSoccerWinners ()
{
  // Create a grammar from an SRGSDocument, create a new rule
  // and set its scope to public.
  SrgsDocument srgsGrammar = new SrgsDocument ();
  SrgsRule winnerRule = new SrgsRule ("WorldCupWinner");
  winnerRule.Scope = SrgsRuleScope.Public;

  // Add the introduction.
  winnerRule.Elements.Add (new SrgsItem ("A nation that has won the world cup is"));

  // Create the rule for the European nations.
  SrgsOneOf oneOfEurope = new SrgsOneOf(new SrgsItem[] {new SrgsItem("England"), new SrgsItem("France"), new SrgsItem("Germany"), new SrgsItem("Italy")});
  SrgsRule ruleEurope = (new SrgsRule("EuropeanNations", new SrgsElement[] {oneOfEurope}));

  // Create the rule for the South American nations.
  SrgsOneOf oneOfSAmerica = new SrgsOneOf(new SrgsItem[] {new SrgsItem("Argentina"), new SrgsItem("Brazil"), new SrgsItem("Uruguay")});
  SrgsRule ruleSAmerica = (new SrgsRule("SouthAmericanNations", new SrgsElement[] {oneOfSAmerica}));

  // Add references to winnerRule for ruleEurope and ruleSAmerica.
  winnerRule.Elements.Add(new SrgsOneOf(new SrgsItem[] {(new SrgsItem (new SrgsRuleRef(ruleEurope))), new SrgsItem(new SrgsRuleRef(ruleSAmerica))}));

  // Add all the rules to the grammar and make winnerRule
  // the root rule of the grammar.
  document.Rules.Add(new SrgsRule[] {winnerRule, ruleEurope, ruleSAmerica});
  srgsGrammar.Root = winnerRule;
}

La grammatica creata ha il formato seguente.

<grammar version="1.0" xml:lang="en-US" xmlns="http://www.w3.org/2001/06/grammar" root="WorldCupWinner">
    <rule id="WorldCupWinner" scope="public">
        <item> A nation that has won the world cup is </item>
        <one-of>
            <item>
                <ruleref uri="#EuropeanNations" />
            </item>
            <item>
                <ruleref uri="#SouthAmericanNations" />
            </item>
        </one-of>
    </rule>
    <rule id="EuropeanNations">
        <one-of>
            <item> England </item>
            <item> France </item>
            <item> Germany </item>
            <item> Italy </item>
        </one-of>
    </rule>
    <rule id="SouthAmericanNations">
        <one-of>
            <item> Argentina </item>
            <item> Brazil </item>
            <item> Uruguay </item>
        </one-of>
    </rule>
</grammar>

Commenti

Il SrgsRule costruttore inizializza la Id proprietà . L'identificatore deve essere univoco all'interno di una determinata grammatica.

Il SrgsRule costruttore genera un'eccezione FormatException nelle circostanze seguenti:

  • idnon è un nome XML valido, come definito in Extensible Markup Language (XML) 1.0 (Quinta edizione). Per parafrasare questa definizione, un nome XML valido deve iniziare con una lettera, un carattere di sottolineatura ('_') o due punti (':') e può essere seguito da zero o più caratteri NameChar (definiti anche nella specifica XML).

  • id è "NULL" o "VOID" o "GARBAGE".

  • id contiene almeno un carattere ID regola non valido. Questi caratteri sono: '?', '*', '+', '|', '(', '), '^', '$', '/', ';', '.', '=', '', '<', '>[', ']', '{', '}', '\\', ', ', '\t', '\r' e '\n'.

Vedi anche

Si applica a