1 implementation of IExcludedService
Microsoft.Extensions.AI.Tests (1)
Functions\AIFunctionFactoryTest.cs (1)
610
private sealed class ExcludedService :
IExcludedService
10 references to IExcludedService
Microsoft.Extensions.AI.Tests (10)
Functions\AIFunctionFactoryTest.cs (10)
559
IExcludedService
service = new ExcludedService();
568
ConfigureParameterBinding = p => p.ParameterType == typeof(
IExcludedService
)
600
public static string One(
IExcludedService
service, [Description("q")] string query, [Description("o")] string? optional = null) => $"{service.Value}{query}{optional}";
601
public static string Two(
IExcludedService
service, [Description("o")] string? optional = null) => $"{service.Value}{optional}";
602
public static string Three(
IExcludedService
service, [Description("n")] string name) => $"{service.Value}{name}";
603
public static string Four(
IExcludedService
service, [Description("n")] string name, [Description("a")] string? aspect = null) => $"{service.Value}{name}{aspect}";
604
public static string Five(
IExcludedService
service, [Description("q")] string query, [Description("f")] string framework) => $"{service.Value}{query}{framework}";
605
public static string Six(
IExcludedService
service, [Description("c")] string? category = null) => $"{service.Value}{category}";
606
public static string Seven(
IExcludedService
service, [Description("t")] string? topic = null) => $"{service.Value}{topic}";
607
public static string Eight(
IExcludedService
service) => service.Value;