[]
Initializes an action failed result.
public ActionResult(string details)
Public Sub New(details As String)
Type | Name | Description |
---|---|---|
string | details | The details information of executing action. |
Initializes an action failed result.
public ActionResult(string details, Type exceptionType)
Public Sub New(details As String, exceptionType As Type)
Type | Name | Description |
---|---|---|
string | details | The details information of executing action. |
Type | exceptionType | The details type of exception |
Initializes an action failed result.
public ActionResult(T value, string details, ActionCategory category)
Public Sub New(value As T, details As String, category As ActionCategory)
Type | Name | Description |
---|---|---|
T | value | A T value represents the executing result. |
string | details | The details information of executing action. |
ActionCategory | category |
Initializes an action success result.
public ActionResult(T value)
Public Sub New(value As T)
Type | Name | Description |
---|---|---|
T | value | A T value represents the executing result. |
Initializes an action failed result.
public ActionResult(T value, ActionCategory invalidateCategory)
Public Sub New(value As T, invalidateCategory As ActionCategory)
Type | Name | Description |
---|---|---|
T | value | A T value represents the executing result. |
ActionCategory | invalidateCategory | The invalidate category information of executing action. |