[]
Performs an implicit conversion from ActionResult<T>/> to bool.
public static implicit operator bool(ActionResult<T> result)
Public Shared Widening Operator CType(result As ActionResult(Of T)) As Boolean
| Type | Name | Description |
|---|---|---|
| ActionResult<T> | result | The specified ActionResult<T>/> to convert. |
| Type | Description |
|---|---|
| bool | The result of the conversion. |
Performs an implicit conversion from ActionResult<T> to T.
public static implicit operator T(ActionResult<T> result)
Public Shared Widening Operator CType(result As ActionResult(Of T)) As T
| Type | Name | Description |
|---|---|---|
| ActionResult<T> | result | The specified ActionResult<T>/> to convert. |
| Type | Description |
|---|---|
| T | The result of the conversion. |