3 instantiations of HttpActionResult
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ActionResultTypeMapper.cs (1)
36return new HttpActionResult(httpResult);
Microsoft.AspNetCore.Mvc.Core.Test (2)
HttpActionResultTests.cs (2)
21var result = new HttpActionResult(httpResult); 42var result = new HttpActionResult(httpResult.Object);
5 references to HttpActionResult
Microsoft.AspNetCore.Mvc.Core (1)
HttpActionResult.cs (1)
19/// Initializes a new instance of the <see cref="HttpActionResult"/> class with the
Microsoft.AspNetCore.Mvc.Core.Test (4)
HttpActionResultTests.cs (2)
21var result = new HttpActionResult(httpResult); 42var result = new HttpActionResult(httpResult.Object);
Infrastructure\ActionResultTypeMapperTest.cs (2)
39var httpResult = Assert.IsType<HttpActionResult>(result);