3 instantiations of SimpleRecord
Microsoft.Extensions.AI.Abstractions.Tests (3)
test\Shared\JsonSchemaExporter\TestTypes.cs (3)
47AdditionalValues: [42, false, 3.14, 3.14M, new int[] { 1, 2, 3 }, new SimpleRecord(1, "str", false, 3.14)], 170Value: new(1, "two", true, 3.14), 330SimpleRecord recordValue = new(42, "str", true, 3.14);
6 references to SimpleRecord
Microsoft.Extensions.AI.Abstractions.Tests (6)
test\Shared\JsonSchemaExporter\TestTypes.cs (6)
169yield return new TestData<SimpleRecord>( 330SimpleRecord recordValue = new(42, "str", true, 3.14); 932public SimpleRecord? Value1 { get; set; } 933public SimpleRecord? Value2 { get; set; } 934public List<SimpleRecord>? ListValue { get; set; } 935public SimpleRecord[]? ArrayValue { get; set; }