1 type derived from B
Microsoft.Extensions.AI.Tests (1)
Functions\AIFunctionFactoryTest.cs (1)
844
private sealed class C :
B
;
3 references to B
Microsoft.Extensions.AI.Tests (3)
Functions\AIFunctionFactoryTest.cs (3)
748
async ValueTask<
B
> (int i) => { await Task.Yield(); return new C(); },
755
Assert.Equal(typeof(
B
), type);
881
[JsonSerializable(typeof(
B
))]