5 instantiations of Person
XmlFormattersWebSite (5)
Controllers\IEnumerableController.cs (2)
29
new
Person
() { Id = 10, Name = "Mike" },
30
new
Person
() { Id = 11, Name = "Jimmy" }
Controllers\IQueryableController.cs (2)
24
new
Person
() { Id = 10, Name = "Mike" },
25
new
Person
() { Id = 11, Name = "Jimmy" }
PersonWrapper.cs (1)
34
return new
Person
() { Id = this.Id, Name = this.Name };
16 references to Person
XmlFormattersWebSite (16)
Controllers\IEnumerableController.cs (4)
26
public IEnumerable<
Person
> WrappedTypes()
34
public IEnumerable<
Person
> WrappedTypes_Empty()
36
return new
Person
[] { };
44
public IEnumerable<
Person
> WrappedTypes_NullInstance()
Controllers\IQueryableController.cs (4)
21
public IQueryable<
Person
> WrappedTypes()
29
public IQueryable<
Person
> WrappedTypes_Empty()
31
return (new
Person
[] { }).AsQueryable();
44
public IQueryable<
Person
> WrappedTypes_NullInstance()
Controllers\XmlApiControllerBase.cs (4)
14
public ActionResult<
Person
> ActionReturningClientErrorStatusCodeResult()
18
public ActionResult<
Person
> ActionReturningProblemDetails()
33
public ActionResult<
Person
> ActionReturningValidationProblem([FromQuery] Address address)
37
public ActionResult<
Person
> ActionReturningValidationDetailsWithMetadata()
PersonWrapper.cs (1)
14
public PersonWrapper(
Person
person)
PersonWrapperProvider.cs (2)
13
var
person = obj as
Person
;
PersonWrapperProviderFactory.cs (1)
13
if (context.DeclaredType == typeof(
Person
))