SrgsDocument コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SrgsDocument クラスの新しいインスタンスを初期化します。
オーバーロード
SrgsDocument() |
SrgsDocument クラスの新しいインスタンスを初期化します。 |
SrgsDocument(GrammarBuilder) |
SrgsDocument オブジェクトから GrammarBuilder クラスの新しいインスタンスを初期化します。 |
SrgsDocument(SrgsRule) |
SrgsDocument クラスの新しいインスタンスを初期化し、文法のルート規則である SrgsRule オブジェクトを指定します。 |
SrgsDocument(String) |
SrgsDocument インスタンスの入力に使用する XML ドキュメントの場所を指定して、SrgsDocument クラスの新しいインスタンスを初期化します。 |
SrgsDocument(XmlReader) |
XML 形式の文法ファイルを参照する SrgsDocument のインスタンスから、XmlReader クラスの新しいインスタンスを初期化します。 |
注釈
クラスのコンストラクターを使用 SrgsDocument すると、 SrgsDocument GrammarBuilder 、 SrgsRule 、またはオブジェクトから、 XmlReader XML 形式の文法へのパスを含む文字列からのインスタンスを作成できます。また、の空のインスタンスを開始 SrgsDocument することもできます。
SrgsDocument()
SrgsDocument クラスの新しいインスタンスを初期化します。
public:
SrgsDocument();
public SrgsDocument ();
Public Sub New ()
例
次の例では、オブジェクトを作成し、と SrgsDocument いう名前のパブリックルールを作成し winnerRule
ます。 次に、 SrgsItem "ワールドカップを獲得した国" という文字列で構成されるを作成し、この項目を Elements ルールのプロパティに追加します。 この例では、さらに2つのルール ( ruleEurope
と ruleSAmerica
) を作成します。各ルールは、 SrgsOneOf 3 つのオブジェクトを含むオブジェクトです SrgsItem 。 その後、 SrgsOneOf SrgsRuleRef とを参照するオブジェクトを含む別のオブジェクトが作成され ruleEurope
ruleSAmerica
ます。 その後、新しい SrgsOneOf オブジェクトがのプロパティに追加され Elements winnerRule
ます。 その後、3つのすべて winnerRule
の規則 (、 ruleEurope
、および ruleSAmerica
) がのプロパティに追加され Rules SrgsDocument ます。 最後に、3つの規則が文法のバイナリ表現にコンパイルされます。
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);
}
}
注釈
このコンストラクターは、空 SrgsDocument のインスタンスを作成します。 空のインスタンス内で文法を構築するには、 SrgsDocument 、、、などの SRGS 要素を表すクラスのインスタンスを追加し SrgsRule SrgsRuleRef SrgsOneOf SrgsItem ます。
適用対象
SrgsDocument(GrammarBuilder)
SrgsDocument オブジェクトから GrammarBuilder クラスの新しいインスタンスを初期化します。
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)
パラメーター
- builder
- GrammarBuilder
GrammarBuilder インスタンスを作成するために使用した SrgsDocument オブジェクト。
例外
builder
が null
です。
例
次の例では、 GrammarBuilder オブジェクトを使用して、インスタンスの文法を構築し Choices ます。 次に、オブジェクトからを作成し SrgsDocument GrammarBuilder ます。
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);
適用対象
SrgsDocument(SrgsRule)
SrgsDocument クラスの新しいインスタンスを初期化し、文法のルート規則である SrgsRule オブジェクトを指定します。
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)
パラメーター
- grammarRootRule
- SrgsRule
SrgsDocument オブジェクト内の root rule
。
例外
grammarRootRule
が null
です。
例
次の例では、 chooseCities
destCities
フライトのオリジンと終点を選択する2つのルール (と) を作成します。 この例では、 SrgsDocument ルールを引数として使用してインスタンスを初期化し chooseCities
ます。 この例では、ルールコレクションの内容とルートルールの名前をコンソールに書き込みます。
// 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);
注釈
このコンストラクターは、指定された規則を SrgsRulesCollection オブジェクトのに追加 SrgsDocument し、文法の規則として設定し Root ます。
適用対象
SrgsDocument(String)
SrgsDocument インスタンスの入力に使用する XML ドキュメントの場所を指定して、SrgsDocument クラスの新しいインスタンスを初期化します。
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)
パラメーター
- path
- String
SRGS XML ファイルの場所。
例外
path
が null
です。
path
が空の文字列です。
例
次の例では、 SrgsDocument "srgsDocumentFile.xml" という名前のファイルから新しいを作成します。
string srgsDocumentFile = Path.Combine(Path.GetTempPath(), "srgsDocumentFile.xml");
SrgsDocument document = null;
if (File.Exists(srgsDocumentFile))
document = new SrgsDocument(srgsDocumentFile);
適用対象
SrgsDocument(XmlReader)
XML 形式の文法ファイルを参照する SrgsDocument のインスタンスから、XmlReader クラスの新しいインスタンスを初期化します。
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)
パラメーター
- srgsGrammar
- XmlReader
XmlReader XML インスタンスで作成された SrgsDocument オブジェクト。
例外
srgsGrammar
が null
です。
例
次の例では、 SrgsDocument XmlReader ファイル "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();
}