共用方式為


SrgsRule.Add(SrgsElement) 方法

定義

SrgsElement 加入至 SrgsRule 物件。

public:
 void Add(System::Speech::Recognition::SrgsGrammar::SrgsElement ^ element);
public void Add (System.Speech.Recognition.SrgsGrammar.SrgsElement element);
member this.Add : System.Speech.Recognition.SrgsGrammar.SrgsElement -> unit
Public Sub Add (element As SrgsElement)

參數

element
SrgsElement

繼承自SrgsElement 的物件,並會指定可辨識的項目。

例外狀況

elementnull

範例

下列範例會建立一個文法,可辨識「已贏得 World Cup 的一名」片語,後面接著一個贏得 World Cup 的國家/地區名稱。 建立 SrgsRule 物件 winnerRule 並將字串標識碼 WorldCupWinner提供給它之後,此範例會使用 Add 方法,將「已贏得 World Cup 的每個國家」字串附加至規則。 這個範例接著會建立兩個額外的規則, ruleEurope 以及 ruleSAmerica。 同樣地,此Add範例會將 物件附加SrgsOneOf至規則,WorldCupWinner其中包含 和ruleSAmerica的規則參考ruleEurope

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

備註

物件的一般新增 SrgsRule 專案包括 SrgsItemSrgsOneOfSrgsRuleRefSrgsToken 對象,這些物件會指定說話者可以說什麼。 有效的規則專案至少必須包含一段可辨識的文字或一個規則參考。 如需詳細資訊 ,請參閱使用 SrgsGrammar 建立文法

物件 SrgsRule 也可能包含 SrgsNameValueTagSrgsSemanticInterpretationTag 對象,這些物件會將語意值和語意索引鍵新增至規則。 語音辨識引擎會在辨識片語組時,傳回語意資訊以及辨識的片語。 如需詳細資訊 ,請參閱語意解譯標記

適用於

另請參閱