20 references to TtsEngineAction
System.Speech (20)
Internal\Synthesis\ConvertTextFrag.cs (2)
23if (textFragment.State.Action == TtsEngineAction.StartParagraph || textFragment.State.Action == TtsEngineAction.StartSentence)
Internal\Synthesis\SSmlParser.cs (2)
365ssmlAttributes._fragmentState.Action = TtsEngineAction.Silence; 588ssmlAttributes._fragmentState.Action = TtsEngineAction.Bookmark;
Internal\Synthesis\TextFragmentEngine.cs (10)
40TtsEngineAction action = fragmentState.Action; 43fragmentState.Action = TtsEngineAction.StartParagraph; 52fragmentState.Action = TtsEngineAction.StartSentence; 99TtsEngineAction action = fragmentState.Action; 118TtsEngineAction action = fragmentState.Action; 156fragmentState.Action = TtsEngineAction.Pronounce; 295private static TtsEngineAction ActionTextFragment(TtsEngineAction action) 302TtsEngineAction action = fragmentState.Action; 303fragmentState.Action = TtsEngineAction.ParseUnknownTag;
Internal\Synthesis\VoiceSynthesis.cs (1)
765fragmentState.Action = TtsEngineAction.Speak;
Synthesis\TTSEngine\TTSEngineTypes.cs (5)
193if (fragState.Action == TtsEngineAction.Speak || fragState.Action == TtsEngineAction.Pronounce) 216public TtsEngineAction Action { get { return _action; } internal set { _action = value; } } 223public FragmentState(TtsEngineAction action, 265private TtsEngineAction _action;