3 instantiations of HttpActionResult
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ActionResultTypeMapper.cs (1)
36
return new
HttpActionResult
(httpResult);
Microsoft.AspNetCore.Mvc.Core.Test (2)
HttpActionResultTests.cs (2)
21
var result = new
HttpActionResult
(httpResult);
42
var 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)
21
var
result = new HttpActionResult(httpResult);
42
var
result = new HttpActionResult(httpResult.Object);
Infrastructure\ActionResultTypeMapperTest.cs (2)
39
var
httpResult = Assert.IsType<
HttpActionResult
>(result);