public new void AppendText(string textToSpeak, PromptVolume volume)
 {
     StartStyle(new PromptStyle(volume));
     HebrewPromptReader.ReadInto(this, textToSpeak);
     EndStyle();
 }
 public new void AppendText(string textToSpeak, PromptEmphasis emphasis)
 {
     StartStyle(new PromptStyle(emphasis));
     HebrewPromptReader.ReadInto(this, textToSpeak);
     EndStyle();
 }
 public new void AppendText(string textToSpeak, PromptRate rate)
 {
     HebrewPromptReader.ReadInto(this, textToSpeak);
 }