2 instantiations of ActionResult
Microsoft.AspNetCore.Mvc.Core (2)
ActionResultOfT.cs (2)
66return new ActionResult<TValue>(value); 75return new ActionResult<TValue>(result);
10 references to ActionResult
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (1)
Logging\ApiRoutingController.cs (1)
21public ActionResult<string> GetUser(
Microsoft.AspNetCore.Mvc.Core (9)
ActionResultOfT.cs (6)
19/// Initializes a new instance of <see cref="ActionResult{TValue}"/> using the specified <paramref name="value"/>. 35/// Initializes a new instance of <see cref="ActionResult{TValue}"/> using the specified <see cref="ActionResult"/>. 61/// Implicitly converts the specified <paramref name="value"/> to an <see cref="ActionResult{TValue}"/>. 64public static implicit operator ActionResult<TValue>(TValue value) 70/// Implicitly converts the specified <paramref name="result"/> to an <see cref="ActionResult{TValue}"/>. 73public static implicit operator ActionResult<TValue>(ActionResult result)
Infrastructure\ActionResultTypeMapper.cs (1)
17returnType.GetGenericTypeDefinition() == typeof(ActionResult<>))
Infrastructure\IActionResultTypeMapper.cs (2)
14/// <see cref="ActionResult{TValue}"/> to an <see cref="IActionResult"/> during request 15/// processing as well as the mapping of <see cref="ActionResult{TValue}"/> to <c>TValue</c>