2 instantiations of new
Microsoft.Extensions.AI.Tests (2)
Functions\AIFunctionFactoryTest.cs (2)
315
MyFunctionTypeWithOneArg mft = new(
new
());
316
MyArgumentType mat =
new
();
3 references to new
Microsoft.Extensions.AI.Tests (3)
Functions\AIFunctionFactoryTest.cs (3)
316
MyArgumentType
mat = new();
333
var result = (Tuple<MyFunctionTypeWithOneArg,
MyArgumentType
>?)await func.InvokeAsync(new() { Services = sp });
835
private sealed class MyFunctionTypeWithOneArg(
MyArgumentType
arg)