SrgsDocument Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci SrgsDocument třídy.
Přetížení
SrgsDocument() |
Inicializuje novou instanci SrgsDocument třídy. |
SrgsDocument(GrammarBuilder) |
Inicializuje novou instanci SrgsDocument třídy z GrammarBuilder objektu. |
SrgsDocument(SrgsRule) |
Inicializuje novou instanci SrgsDocument třídy a určí SrgsRule objekt, který bude kořenovým pravidlem gramatiky. |
SrgsDocument(String) |
Inicializuje novou instanci SrgsDocument třídy, která určuje umístění dokumentu XML, který se používá k vyplnění SrgsDocument instance. |
SrgsDocument(XmlReader) |
Inicializuje novou instanci SrgsDocument třídy z instance XmlReader , která odkazuje na soubor gramatiky ve formátu XML. |
Poznámky
Pomocí konstruktorů SrgsDocument třídy můžete vytvořit instanci SrgsDocument z GrammarBuilder SrgsRule objektu, nebo XmlReader z řetězce, který obsahuje cestu k gramatice formátu XML, nebo můžete iniciovat prázdnou instanci SrgsDocument .
SrgsDocument()
Inicializuje novou instanci SrgsDocument třídy.
public:
SrgsDocument();
public SrgsDocument ();
Public Sub New ()
Příklady
Následující příklad vytvoří SrgsDocument objekt a poté vytvoří veřejné pravidlo s názvem winnerRule
. Pak vytvoří SrgsItem , který se skládá z řetězce "A", který získal světový konvičku: ", a přidá tuto položku do Elements Vlastnosti pravidla. Příklad následně vytvoří dvě další pravidla ( ruleEurope
a ruleSAmerica
), z nichž každý je SrgsOneOf objekt, který obsahuje tři SrgsItem objekty. Následně SrgsOneOf je vytvořen jiný objekt, který obsahuje SrgsRuleRef objekty, které odkazují na ruleEurope
a ruleSAmerica
. Nový SrgsOneOf objekt je poté přidán do Elements vlastnosti winnerRule
. Po tomto případě budou všechna tři pravidla ( winnerRule
, a ruleEurope
ruleSAmerica
) přidána do Rules vlastnosti SrgsDocument . Nakonec jsou tato tři pravidla zkompilována do binární reprezentace gramatiky.
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;
String fileName = Path.GetTempFileName();
using (FileStream stream = new FileStream(fileName, FileMode.Create))
{
// Compile the grammar to a binary format.
SrgsGrammarCompiler.Compile(document, stream);
}
}
Poznámky
Tento konstruktor vytvoří prázdnou SrgsDocument instanci. Chcete-li vytvořit gramatiku v rámci prázdné SrgsDocument instance, přidejte instance tříd, které reprezentují SRGS prvky, například SrgsRule , SrgsRuleRef , SrgsOneOf a SrgsItem .
Platí pro
SrgsDocument(GrammarBuilder)
Inicializuje novou instanci SrgsDocument třídy z GrammarBuilder objektu.
public:
SrgsDocument(System::Speech::Recognition::GrammarBuilder ^ builder);
public SrgsDocument (System.Speech.Recognition.GrammarBuilder builder);
new System.Speech.Recognition.SrgsGrammar.SrgsDocument : System.Speech.Recognition.GrammarBuilder -> System.Speech.Recognition.SrgsGrammar.SrgsDocument
Public Sub New (builder As GrammarBuilder)
Parametry
- builder
- GrammarBuilder
GrammarBuilderObjekt použitý k vytvoření SrgsDocument instance.
Výjimky
builder
je null
.
Příklady
Následující příklad vytvoří gramatiku v GrammarBuilder instanci pomocí Choices objektů. Pak vytvoří SrgsDocument z GrammarBuilder objektu.
GrammarBuilder builder = null;
// Create new Choices objects and add countries/regions, and create GrammarBuilder objects.
Choices choicesEurope = new Choices(new string[] { "England", "France", "Germany", "Italy" });
GrammarBuilder europe = new GrammarBuilder(choicesEurope);
Choices choicesSAmerica = new Choices(new string[] { "Argentina", "Brazil", "Uruguay" });
GrammarBuilder sAmerica = new GrammarBuilder(choicesSAmerica);
Choices worldCupWinnerChoices = new Choices(new GrammarBuilder[] {choicesEurope, choicesSAmerica});
// Create new GrammarBuilder from a Choices object.
builder = new GrammarBuilder(worldCupWinnerChoices);
// Create an SrgsDocument object from a GrammarBuilder object.
SrgsDocument document = new SrgsDocument(builder);
Platí pro
SrgsDocument(SrgsRule)
Inicializuje novou instanci SrgsDocument třídy a určí SrgsRule objekt, který bude kořenovým pravidlem gramatiky.
public:
SrgsDocument(System::Speech::Recognition::SrgsGrammar::SrgsRule ^ grammarRootRule);
public SrgsDocument (System.Speech.Recognition.SrgsGrammar.SrgsRule grammarRootRule);
new System.Speech.Recognition.SrgsGrammar.SrgsDocument : System.Speech.Recognition.SrgsGrammar.SrgsRule -> System.Speech.Recognition.SrgsGrammar.SrgsDocument
Public Sub New (grammarRootRule As SrgsRule)
Parametry
- grammarRootRule
- SrgsRule
root rule
V SrgsDocument objektu.
Výjimky
grammarRootRule
je null
.
Příklady
Následující příklad vytvoří dvě pravidla ( chooseCities
a destCities
) pro výběr původu a cílové města pro určitý let. Příklad inicializuje SrgsDocument instanci pomocí chooseCities
pravidla jako argumentu. V příkladu se zapíše obsah kolekce Rules a název kořenového pravidla do konzoly.
// Create a rule that contains a list of destination cities.
SrgsRule destCities = new SrgsRule("Destination");
SrgsOneOf toCities = new SrgsOneOf(new string[] { "New York", "Seattle", "Denver" });
destCities.Add(toCities);
// Create a list of origin cities and supporting phrases.
SrgsOneOf fromCities = new SrgsOneOf(new SrgsItem[] {
new SrgsItem("Dallas"), new SrgsItem("Miami"), new SrgsItem("Chicago") });
SrgsItem intro = new SrgsItem("I want to fly from");
SrgsItem to = new SrgsItem("to");
// Create the root rule of the grammar, and assemble the components.
SrgsRule chooseCities = new SrgsRule("Trip");
chooseCities.Add(intro);
chooseCities.Add(fromCities);
chooseCities.Add(to);
chooseCities.Add(new SrgsRuleRef(destCities));
// Create the SrgsDocument and specify the root rule to add.
SrgsDocument bookFlight = new SrgsDocument(chooseCities);
// Add the rule for the destination cities to the document's rule collection.
bookFlight.Rules.Add(new SrgsRule[] { destCities });
// Display the contents of the Rules collection and the name of the root rule.
foreach (SrgsRule rule in bookFlight.Rules)
{
Console.WriteLine("Rule " + rule.Id + " is in the rules collection");
}
Console.WriteLine("Root Rule " + bookFlight.Root.Id);
// Create a Grammar object and load it to the recognizer.
Grammar g = new Grammar(bookFlight);
g.Name = ("City Chooser");
recognizer.LoadGrammarAsync(g);
Poznámky
Tento konstruktor přidá zadané pravidlo k SrgsRulesCollection SrgsDocument objektu a nastaví ho jako Root pravidlo pro gramatiku.
Platí pro
SrgsDocument(String)
Inicializuje novou instanci SrgsDocument třídy, která určuje umístění dokumentu XML, který se používá k vyplnění SrgsDocument instance.
public:
SrgsDocument(System::String ^ path);
public SrgsDocument (string path);
new System.Speech.Recognition.SrgsGrammar.SrgsDocument : string -> System.Speech.Recognition.SrgsGrammar.SrgsDocument
Public Sub New (path As String)
Parametry
- path
- String
Umístění souboru XML SRGS.
Výjimky
path
je null
.
path
je prázdný řetězec.
Příklady
Následující příklad vytvoří nový SrgsDocument ze souboru s názvem "srgsDocumentFile.xml".
string srgsDocumentFile = Path.Combine(Path.GetTempPath(), "srgsDocumentFile.xml");
SrgsDocument document = null;
if (File.Exists(srgsDocumentFile))
document = new SrgsDocument(srgsDocumentFile);
Platí pro
SrgsDocument(XmlReader)
Inicializuje novou instanci SrgsDocument třídy z instance XmlReader , která odkazuje na soubor gramatiky ve formátu XML.
public:
SrgsDocument(System::Xml::XmlReader ^ srgsGrammar);
public SrgsDocument (System.Xml.XmlReader srgsGrammar);
new System.Speech.Recognition.SrgsGrammar.SrgsDocument : System.Xml.XmlReader -> System.Speech.Recognition.SrgsGrammar.SrgsDocument
Public Sub New (srgsGrammar As XmlReader)
Parametry
- srgsGrammar
- XmlReader
XmlReaderObjekt, který byl vytvořen s SrgsDocument instancí XML.
Výjimky
srgsGrammar
je null
.
Příklady
Následující příklad vytvoří novou instanci SrgsDocument z instance XmlReader , která odkazuje na soubor "srgsDocumentFile.xml".
string srgsDocumentFile = Path.Combine(Path.GetTempPath(), "srgsDocumentFile.xml");
SrgsDocument document = null;
if (File.Exists(srgsDocumentFile))
{
XmlReader reader = XmlReader.Create(srgsDocumentFile);
document = new SrgsDocument(reader);
reader.Close();
}