ActionResult<T> Constructor(T,String,ActionCategory)
In This Topic
Initializes an action failed result.
Syntax
'Declaration
Public Function New( _
ByVal As , _
ByVal As String, _
ByVal As ActionCategory _
)
'Usage
Dim value As
Dim details As String
Dim category As ActionCategory
Dim instance As New ActionResult(Of T)(value, details, category)
public ActionResult<T>(
,
string ,
ActionCategory
)
Parameters
- value
- A value represents the executing result.
- details
- The details information of executing action.
- category
See Also