7 instantiations of User
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (7)
NewtonsoftJsonOutputFormatterTest.cs (7)
51var person = new User() { FullName = "John", age = 35 }; 92var person = new User() { FullName = "John", age = 35 }; 124var person = new User() { FullName = "John", age = 35 }; 152var person = new User() { FullName = "John", age = 35 }; 198var user = new User { FullName = "John", age = 35 }; 374var model = Enumerable.Range(0, 1000).Select(p => new User { FullName = new string('a', 5000) }); 405var user = new User { FullName = "John", age = 35 };
13 references to User
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (13)
NewtonsoftJsonOutputFormatterTest.cs (13)
51var person = new User() { FullName = "John", age = 35 }; 53var outputFormatterContext = GetOutputFormatterContext(person, typeof(User), writerFactory: (stream, encoding) => 92var person = new User() { FullName = "John", age = 35 }; 94var outputFormatterContext = GetOutputFormatterContext(person, typeof(User), writerFactory: (stream, encoding) => 124var person = new User() { FullName = "John", age = 35 }; 125var outputFormatterContext = GetOutputFormatterContext(person, typeof(User)); 152var person = new User() { FullName = "John", age = 35 }; 158var outputFormatterContext1 = GetOutputFormatterContext(person, typeof(User)); 165var outputFormatterContext2 = GetOutputFormatterContext(person, typeof(User)); 198var user = new User { FullName = "John", age = 35 }; 199var context = GetOutputFormatterContext(user, typeof(User)); 405var user = new User { FullName = "John", age = 35 }; 420var context = GetOutputFormatterContext(user, typeof(User));