1 instantiation of MyResponse
Microsoft.AspNetCore.Mvc.ApiExplorer.Test (1)
ApiResponseTypeProviderTest.cs (1)
892
public MyResponse GetCustomIResult() => new
MyResponse
{ Content = "Test Content" };
3 references to MyResponse
Microsoft.AspNetCore.Mvc.ApiExplorer.Test (3)
ApiResponseTypeProviderTest.cs (3)
832
actionDescriptor.EndpointMetadata = [new ProducesResponseTypeMetadata(200, typeof(
MyResponse
))];
840
Assert.Equal(typeof(
MyResponse
), response.Type);
892
public
MyResponse
GetCustomIResult() => new MyResponse { Content = "Test Content" };