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