8 references to Person
Mvc.Api.Analyzers.Test (8)
TestFiles\SymbolApiResponseMetadataProviderTest\GetResponseMetadataTests.cs (8)
13
public ActionResult<
Person
> GetPerson(int id) => null;
15
public ActionResult<
Person
> PostPerson(
Person
person) => null;
20
[Produces(typeof(
Person
))]
26
[ProducesResponseType(typeof(
Person
), 202)]
32
[ProducesResponseType(typeof(object), 200, Type = typeof(
Person
), StatusCode = 201)]
35
[CustomResponseType(Type = typeof(
Person
), StatusCode = 204)]
44
[CustomInvalidProducesResponseType(Type = typeof(
Person
), StatusCode = "204")]