SrgsDocument.WriteSrgs(XmlWriter) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Grava o conteúdo do objeto SrgsDocument em um arquivo de gramática em formato XML que está de acordo com a SRGS (Especificação de Gramática de Reconhecimento de Fala) Versão 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)
Parâmetros
- srgsGrammar
- XmlWriter
O XmlWriter que é usado para gravar a instância SrgsDocument.
Exceções
srgsGrammar
é null
.
Exemplos
O exemplo a seguir cria um SrgsDocument objeto e, em seguida, cria uma regra pública chamada winnerRule
. Em seguida, ele cria um SrgsItem que consiste na cadeia de caracteres "uma nação que ganhou a Copa do mundo é:" e adiciona esse item à Elements propriedade da regra. Em seguida, o exemplo cria mais duas regras ( ruleEurope
e ruleSAmerica
), cada uma delas é um SrgsOneOf objeto que contém três SrgsItem objetos. Depois disso, outro SrgsOneOf objeto é criado contendo SrgsRuleRef objetos que se referem a ruleEurope
e ruleSAmerica
. O novo SrgsOneOf objeto é então adicionado à Elements propriedade de winnerRule
. Depois disso, todas as três regras ( winnerRule
, ruleEurope
e ruleSAmerica
) são adicionadas à Rules Propriedade do SrgsDocument . Por fim, o exemplo cria um arquivo XML vazio e uma instância do XmlWriter . O WriteSrgs método usa a XmlWriter instância do para gravar o conteúdo do no SrgsDocument arquivo 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();
}