2 instantiations of Child
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (2)
XmlDataContractSerializerOutputFormatterTest.cs (2)
482var child = new Child { Id = 1 }; 606var child = new Child { Id = sampleId };
5 references to Child
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (5)
XmlDataContractSerializerOutputFormatterTest.cs (5)
69public List<Child> Children { get; set; } 482var child = new Child { Id = 1 }; 483var parent = new Parent { Name = "Parent", Children = new List<Child> { child } }; 606var child = new Child { Id = sampleId }; 607var parent = new Parent { Name = sampleName, Children = new List<Child> { child } };