PromptBuilder.AppendTextWithHint 方法

定义

将文本追加到 PromptBuilder 对象,并指定该文本的内容类型。

重载

AppendTextWithHint(String, String)

将文本追加到 PromptBuilder 对象本,String 指定该文本的内容类型。

AppendTextWithHint(String, SayAs)

将文本追加到 PromptBuilder 对象,并使用 SayAs 枚举的成员指定内容类型。

AppendTextWithHint(String, String)

将文本追加到 PromptBuilder 对象本,String 指定该文本的内容类型。

public:
 void AppendTextWithHint(System::String ^ textToSpeak, System::String ^ sayAs);
public void AppendTextWithHint (string textToSpeak, string sayAs);
member this.AppendTextWithHint : string * string -> unit
Public Sub AppendTextWithHint (textToSpeak As String, sayAs As String)

参数

textToSpeak
String

包含要发言文本的字符串。

sayAs
String

文本的内容类型。

注解

您可以使用此方法来指定枚举中未包含的内容类型 SayAs 。 但是,TTS 引擎必须支持您指定的参数。

适用于

AppendTextWithHint(String, SayAs)

将文本追加到 PromptBuilder 对象,并使用 SayAs 枚举的成员指定内容类型。

public:
 void AppendTextWithHint(System::String ^ textToSpeak, System::Speech::Synthesis::SayAs sayAs);
public void AppendTextWithHint (string textToSpeak, System.Speech.Synthesis.SayAs sayAs);
member this.AppendTextWithHint : string * System.Speech.Synthesis.SayAs -> unit
Public Sub AppendTextWithHint (textToSpeak As String, sayAs As SayAs)

参数

textToSpeak
String

包含要发言文本的字符串。

sayAs
SayAs

文本的内容类型。

示例

using System;  
using System.Speech.Synthesis;  

namespace SampleSynthesis  
{  
  class Program  
  {  
    static void Main(string[] args)  
    {  

      // Initialize a new instance of the SpeechSynthesizer.  
      using (SpeechSynthesizer synth = new SpeechSynthesizer())  
      {  

        // Configure the audio output.   
        synth.SetOutputToDefaultAudioDevice();  

        // Create a PromptBuilder object and define the data types for some of the added strings.  
        PromptBuilder sayAs = new PromptBuilder();  
        sayAs.AppendText("Your");  
        sayAs.AppendTextWithHint("1st", SayAs.NumberOrdinal);  
        sayAs.AppendText("request was for");  
        sayAs.AppendTextWithHint("1", SayAs.NumberCardinal);  
        sayAs.AppendText("room, on");  
        sayAs.AppendTextWithHint("10/19/2012,", SayAs.MonthDayYear);  
        sayAs.AppendText("with early arrival at");  
        sayAs.AppendTextWithHint("12:35pm", SayAs.Time12);  

        // Speak the contents of the SSML prompt.  
        synth.Speak(sayAs);  
      }  

      Console.WriteLine();  
      Console.WriteLine("Press any key to exit...");  
      Console.ReadKey();  
    }  
  }  
}  

注解

指定的内容类型 sayAs 可以为语音合成引擎提供有关如何对的内容进行发音的指导 textToSpeak

适用于