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