3 references to ConfigureOptionsTextToSpeechClient
Microsoft.Extensions.AI (1)
TextToSpeech\ConfigureOptionsTextToSpeechClientBuilderExtensions.cs (1)
35
return builder.Use(innerClient => new
ConfigureOptionsTextToSpeechClient
(innerClient, configure));
Microsoft.Extensions.AI.Tests (2)
TextToSpeech\ConfigureOptionsTextToSpeechClientTests.cs (2)
18
Assert.Throws<ArgumentNullException>("innerClient", () => new
ConfigureOptionsTextToSpeechClient
(null!, _ => { }));
19
Assert.Throws<ArgumentNullException>("configure", () => new
ConfigureOptionsTextToSpeechClient
(new TestTextToSpeechClient(), null!));