3 instantiations of 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!));
2 references to ConfigureOptionsTextToSpeechClient
Microsoft.Extensions.AI (2)
TextToSpeech\ConfigureOptionsTextToSpeechClient.cs (1)
22
/// <summary>Initializes a new instance of the <see cref="
ConfigureOptionsTextToSpeechClient
"/> class with the specified <paramref name="configure"/> callback.</summary>
TextToSpeech\ConfigureOptionsTextToSpeechClientBuilderExtensions.cs (1)
11
/// <summary>Provides extensions for configuring <see cref="
ConfigureOptionsTextToSpeechClient
"/> instances.</summary>