ActionResult<TValue> Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A type that wraps either an TValue
instance or an ActionResult.
generic <typename TValue>
public ref class ActionResult sealed : Microsoft::AspNetCore::Mvc::Infrastructure::IConvertToActionResult
public sealed class ActionResult<TValue> : Microsoft.AspNetCore.Mvc.Infrastructure.IConvertToActionResult
type ActionResult<'Value> = class
interface IConvertToActionResult
Public NotInheritable Class ActionResult(Of TValue)
Implements IConvertToActionResult
Type Parameters
- TValue
The type of the result.
- Inheritance
-
ActionResult<TValue>
- Implements
Constructors
ActionResult<TValue>(ActionResult) |
Initializes a new instance of ActionResult<TValue> using the specified ActionResult. |
ActionResult<TValue>(TValue) |
Initializes a new instance of ActionResult<TValue> using the specified |
Properties
Result |
Gets the ActionResult. |
Value |
Gets the value. |
Operators
Implicit(ActionResult to ActionResult<TValue>) | |
Implicit(TValue to ActionResult<TValue>) |
Explicit Interface Implementations
IConvertToActionResult.Convert() |