Freigeben über


SrgsDocument Konstruktoren

Definition

Initialisiert eine neue Instanz der SrgsDocument-Klasse.

Überlädt

SrgsDocument()

Initialisiert eine neue Instanz der SrgsDocument-Klasse.

SrgsDocument(GrammarBuilder)

Initialisiert eine neue Instanz der SrgsDocument-Klasse mit einem GrammarBuilder-Objekt.

SrgsDocument(SrgsRule)

Initialisiert eine neue Instanz der SrgsDocument-Klasse und gibt ein SrgsRule-Objekt an, das die Stammregel der Grammatik sein soll.

SrgsDocument(String)

Initialisiert eine neue Instanz der SrgsDocument-Klasse, die den Speicherort des XML-Dokuments angibt, das verwendet wird, um die SrgsDocument-Instanz auszufüllen.

SrgsDocument(XmlReader)

Initialisiert eine neue Instanz der SrgsDocument-Klasse von einer Instanz von XmlReader, die eine XML-Format-Grammatikdatei referenziert.

Hinweise

Mithilfe der Konstruktoren für die- SrgsDocument Klasse können Sie eine Instanz von SrgsDocument aus einem- GrammarBuilder ,-oder- SrgsRule XmlReader Objekt aus einer Zeichenfolge erstellen, die den Pfad zu einer Grammatik im XML-Format enthält, oder Sie können eine leere Instanz von initiieren SrgsDocument .

SrgsDocument()

Initialisiert eine neue Instanz der SrgsDocument-Klasse.

public:
 SrgsDocument();
public SrgsDocument ();
Public Sub New ()

Beispiele

Im folgenden Beispiel wird ein SrgsDocument -Objekt erstellt und dann eine öffentliche Regel mit dem Namen erstellt winnerRule . Anschließend wird ein erstellt SrgsItem , der aus der Zeichenfolge "A Nation, die den World Cup hat:", und dieses Element wird der- Elements Eigenschaft der Regel hinzugefügt. Im Beispiel werden dann zwei weitere Regeln ( ruleEurope und ruleSAmerica ) erstellt, bei denen es sich um ein Objekt handelt, SrgsOneOf das drei- SrgsItem Objekte enthält. Danach wird ein anderes SrgsOneOf Objekt erstellt, das SrgsRuleRef -Objekte enthält, die auf ruleEurope und verweisen ruleSAmerica . Das neue- SrgsOneOf Objekt wird dann der- Elements Eigenschaft von hinzugefügt winnerRule . Anschließend werden der-Eigenschaft von alle drei Regeln ( winnerRule , ruleEurope und ruleSAmerica ) hinzugefügt Rules SrgsDocument . Schließlich werden die drei Regeln in eine binäre Darstellung der Grammatik kompiliert.

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);   
  }  
}  

Hinweise

Dieser Konstruktor erstellt eine leere- SrgsDocument Instanz. Fügen Sie zum Erstellen einer Grammatik innerhalb einer leeren SrgsDocument -Instanz Instanzen von Klassen hinzu, die SRGS-Elemente darstellen, z SrgsRule . b SrgsRuleRef .,, SrgsOneOf und SrgsItem .

Gilt für

SrgsDocument(GrammarBuilder)

Initialisiert eine neue Instanz der SrgsDocument-Klasse mit einem GrammarBuilder-Objekt.

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)

Parameter

builder
GrammarBuilder

Das GrammarBuilder-Objekt, das zum Erstellen der SrgsDocument-Instanz verwendet wird.

Ausnahmen

builder ist null.

Beispiele

Im folgenden Beispiel wird eine Grammatik in einer- GrammarBuilder Instanz mithilfe von- Choices Objekten erstellt. Anschließend wird ein SrgsDocument aus dem- GrammarBuilder Objekt erstellt.

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);  

Gilt für

SrgsDocument(SrgsRule)

Initialisiert eine neue Instanz der SrgsDocument-Klasse und gibt ein SrgsRule-Objekt an, das die Stammregel der Grammatik sein soll.

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)

Parameter

grammarRootRule
SrgsRule

Die root rule im SrgsDocument-Objekt.

Ausnahmen

grammarRootRule ist null.

Beispiele

Im folgenden Beispiel werden zwei Regeln ( chooseCities und destCities ) erstellt, um die Ursprungs-und Zielstädte für einen Flug auszuwählen. Im Beispiel wird die- SrgsDocument Instanz mit der- chooseCities Regel als Argument initialisiert. Im Beispiel wird der Inhalt der Regel Sammlung und der Name der Stamm Regel in die Konsole geschrieben.

// 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);  

Hinweise

Dieser Konstruktor fügt die angegebene Regel dem SrgsRulesCollection des- SrgsDocument Objekts hinzu und legt ihn als die Root Regel für die Grammatik fest.

Gilt für

SrgsDocument(String)

Initialisiert eine neue Instanz der SrgsDocument-Klasse, die den Speicherort des XML-Dokuments angibt, das verwendet wird, um die SrgsDocument-Instanz auszufüllen.

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)

Parameter

path
String

Der Speicherort der SRGS XML-Datei.

Ausnahmen

path ist null.

path ist eine leere Zeichenfolge.

Beispiele

Im folgenden Beispiel wird eine neue SrgsDocument aus der Datei mit dem Namen "srgsDocumentFile.xml" erstellt.

string srgsDocumentFile = Path.Combine(Path.GetTempPath(), "srgsDocumentFile.xml");  
SrgsDocument document = null;  

if (File.Exists(srgsDocumentFile))  
   document = new SrgsDocument(srgsDocumentFile);  

Gilt für

SrgsDocument(XmlReader)

Initialisiert eine neue Instanz der SrgsDocument-Klasse von einer Instanz von XmlReader, die eine XML-Format-Grammatikdatei referenziert.

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)

Parameter

srgsGrammar
XmlReader

Das XmlReader-Objekt, das mit der SrgsDocument-XML-Instanz erstellt wurde.

Ausnahmen

srgsGrammar ist null.

Beispiele

Im folgenden Beispiel wird eine neue Instanz von SrgsDocument aus einer Instanz von erstellt, die auf XmlReader die Datei "srgsDocumentFile.xml" verweist.

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();  
}  

Gilt für