Skip to content

Commit 00811df

Browse files
committed
chore(Text to Speech V1): Invoke example methods
1 parent 1be9760 commit 00811df

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

examples/IBM.Watson.TextToSpeech.v1.Examples/ServiceExample.cs

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,28 @@ static void Main(string[] args)
3333
{
3434
ServiceExample example = new ServiceExample();
3535

36+
example.ListVoices();
37+
example.GetVoice();
38+
39+
example.Synthesize();
40+
41+
example.GetPronunciation();
42+
43+
example.CreateVoiceModel();
44+
example.ListVoiceModels();
45+
example.UpdateVoiceModel();
46+
example.GetVoiceModel();
47+
48+
example.AddWords();
49+
example.ListWords();
50+
example.AddWord();
51+
example.GetWord();
52+
53+
example.DeleteWord();
54+
example.DeleteVoiceModel();
55+
56+
example.DeleteUserData();
57+
3658
Console.WriteLine("Examples complete. Press any key to close the application.");
3759
Console.ReadKey();
3860
}
@@ -135,7 +157,7 @@ public void ListVoiceModels()
135157
Console.WriteLine(result.Result);
136158
}
137159

138-
public void CreateVoiceModels()
160+
public void CreateVoiceModel()
139161
{
140162
TokenOptions tokenOptions = new TokenOptions()
141163
{

0 commit comments

Comments
 (0)