SrgsDocument.WriteSrgs(XmlWriter) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Записывает содержимое объекта SrgsDocument в файл грамматики XML-формата, который соответствует cпецификации грамматики распознавания речи (SRGS) версии 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)
Параметры
- srgsGrammar
- XmlWriter
XmlWriter, используемый для записи экземпляра SrgsDocument.
Исключения
srgsGrammar
имеет значение null
.
Примеры
В следующем примере создается SrgsDocument объект , а затем открытое правило с именем winnerRule
. Затем он создает , SrgsItem который состоит из строки "Нация, которая выиграла Кубок мира is", и добавляет этот элемент к Elements свойству правила. Затем в примере создаются еще два правила (ruleEurope
и ruleSAmerica
), каждое из которых является SrgsOneOf объектом, содержащим три SrgsItem объекта . После этого создается другой SrgsOneOf объект , содержащий SrgsRuleRef объекты, ссылающиеся на ruleEurope
и ruleSAmerica
. Затем новый SrgsOneOf объект добавляется в Elements свойство объекта winnerRule
. После этого все три правила (winnerRule
, ruleEurope
и ruleSAmerica
) добавляются в Rules свойство SrgsDocumentобъекта . Наконец, в примере создается пустой XML-файл и экземпляр XmlWriter. Метод WriteSrgs использует экземпляр для XmlWriter записи содержимого объекта в SrgsDocument 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();
}