2 implementations of CreateToken
System.Speech (2)
Internal\SrgsCompiler\SrgsElementCompilerFactory.cs (1)
49
IToken IElementFactory.
CreateToken
(IElement parent, string content, string? pronunciation, string? display, float reqConfidence)
Recognition\SrgsGrammar\SrgsElementFactory.cs (1)
42
IToken IElementFactory.
CreateToken
(IElement parent, string content, string? pronunciation, string? display, float reqConfidence)
5 references to CreateToken
System.Speech (5)
Internal\GrammarBuilding\GrammarBuilderPhrase.cs (1)
112
XmlParser.ParseText(parent, _phrase, null, null, -1f, new CreateTokenCallback(elementFactory.
CreateToken
));
Internal\SrgsParser\SrgsDocumentParser.cs (2)
209
return _parser.
CreateToken
(parent, srgsToken.Text, srgsToken.Pronunciation, srgsToken.Display, -1);
223
XmlParser.ParseText(parent, sChars, pronunciation, display, reqConfidence, new CreateTokenCallback(_parser.
CreateToken
));
Internal\SrgsParser\XmlParser.cs (2)
1025
return _parser.
CreateToken
(parent, content, sPronunciation, sDisplay, reqConfidence);
1039
ParseText(parent, sChars, pronunciation, display, reqConfidence, new CreateTokenCallback(_parser.
CreateToken
));