2 implementations of CreateRuleRef
System.Speech (2)
Internal\SrgsCompiler\SrgsElementCompilerFactory.cs (1)
65IRuleRef IElementFactory.CreateRuleRef(IElement parent, Uri srgsUri, string? semanticKey, string? parameters)
Recognition\SrgsGrammar\SrgsElementFactory.cs (1)
109IRuleRef IElementFactory.CreateRuleRef(IElement? parent, Uri srgsUri, string? semanticKey, string? parameters)
5 references to CreateRuleRef
System.Speech (5)
Internal\GrammarBuilding\GrammarBuilderDictation.cs (1)
84return elementFactory.CreateRuleRef(parent, ruleUri, null, null);
Internal\GrammarBuilding\GrammarBuilderRuleRef.cs (1)
52return elementFactory.CreateRuleRef(parent, ruleUri, null, null);
Internal\GrammarBuilding\RuleRefElement.cs (1)
65return elementFactory.CreateRuleRef(parent, new Uri("#" + Rule.RuleName, UriKind.Relative), _semanticKey, null);
Internal\SrgsParser\SrgsDocumentParser.cs (1)
158ruleRef = _parser.CreateRuleRef(parent, srgsRuleRef.Uri, srgsRuleRef.SemanticKey, srgsRuleRef.Params);
Internal\SrgsParser\XmlParser.cs (1)
758ruleRef = _parser.CreateRuleRef(parent, new Uri(uri, UriKind.RelativeOrAbsolute), sAlias, sParams);