SrgsDocument.WriteSrgs(XmlWriter) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zapisuje zawartość SrgsDocument obiektu do pliku gramatyki w formacie XML, który jest zgodny ze specyfikacją gramatyki rozpoznawania mowy (SRGS) w wersji 1,0.
public:
void WriteSrgs(System::Xml::XmlWriter ^ srgsGrammar);
public void WriteSrgs (System.Xml.XmlWriter srgsGrammar);
member this.WriteSrgs : System.Xml.XmlWriter -> unit
Public Sub WriteSrgs (srgsGrammar As XmlWriter)
Parametry
- srgsGrammar
- XmlWriter
XmlWriterSłuży do zapisywania SrgsDocument wystąpienia.
Wyjątki
srgsGrammar
to null
.
Przykłady
Poniższy przykład tworzy SrgsDocument obiekt, a następnie tworzy regułę publiczną o nazwie winnerRule
. Następnie tworzy SrgsItem , która składa się z ciągu "kraj, który kupił światowy filiżankę:", i dodaje ten element do Elements Właściwości reguły. Przykład tworzy dwie więcej reguł ( ruleEurope
i ruleSAmerica
), z których każdy jest SrgsOneOf obiektem, który zawiera trzy SrgsItem obiekty. Następnie SrgsOneOf tworzony jest inny obiekt, który zawiera SrgsRuleRef obiekty odwołujące się do ruleEurope
i ruleSAmerica
. Nowy SrgsOneOf obiekt jest następnie dodawany do Elements właściwości winnerRule
. Następnie wszystkie trzy reguły ( winnerRule
, ruleEurope
i ruleSAmerica
) zostaną dodane do Rules właściwości SrgsDocument . Na koniec przykład tworzy pusty plik XML i wystąpienie XmlWriter . WriteSrgsMetoda używa XmlWriter wystąpienia do zapisania zawartości w SrgsDocument pliku XML.
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;
// Create a string object with the path to the file to use.
string srgsDocumentFile = Path.Combine(Path.GetTempPath(), "srgsDocumentFile.xml");
// Create an XmlWriter object and pass the file path.
XmlWriter writer = XmlWriter.Create(srgsDocumentFile);
// Write the contents of the XmlWriter object to an SRGS-compatible XML file.
document.WriteSrgs(writer);
writer.Close();
}