2 instantiations of TodoJsonChild
Microsoft.AspNetCore.Http.Results.Tests (2)
HttpResultsHelperTests.cs (2)
152var value = new TodoJsonChild() 229yield return new TodoJsonChild() { Id = 3, IsComplete = true, Name = "Three", Child = "ThreeChild" };
7 references to TodoJsonChild
Microsoft.AspNetCore.Http.Results.Tests (7)
HttpResultsHelperTests.cs (7)
152var value = new TodoJsonChild() 172var body = JsonSerializer.Deserialize<TodoJsonChild>(responseBodyStream.ToArray(), serializerOptions); 214var three = Assert.IsType<TodoJsonChild>(body[2]); 281[JsonDerivedType(typeof(TodoJsonChild), nameof(TodoJsonChild))]