Property | Type | Description |
---|
Method | Description | |
---|---|---|
CustomActionResult ( ) : Microsoft.AspNetCore.Mvc |
Parameterless contructor that initializes the ActionResult with HttpStatusCode.OK as the default Response Code.
|
|
CustomActionResult ( HttpStatusCode, statusCode ) : Microsoft.AspNetCore.Mvc |
Constructor that initializes the ActionResult with a specified HttpStatusCode
|
|
CustomActionResult ( HttpStatusCode, statusCode, string message ) : Microsoft.AspNetCore.Mvc |
Constructor that initializes the ActionResult with a specified HttpStatusCode
|
|
ExecuteResult ( ActionContext, context ) : void | ||
GetBuffer ( ) : byte[] |
public CustomActionResult ( ) : Microsoft.AspNetCore.Mvc | ||
return | Microsoft.AspNetCore.Mvc |
public CustomActionResult ( HttpStatusCode, statusCode ) : Microsoft.AspNetCore.Mvc | ||
statusCode | HttpStatusCode, | /// Http response code to set for this ActionResult. /// |
return | Microsoft.AspNetCore.Mvc |
public CustomActionResult ( HttpStatusCode, statusCode, string message ) : Microsoft.AspNetCore.Mvc | ||
statusCode | HttpStatusCode, | /// Http response code to set for this ActionResult. /// |
message | string | Reason phrase |
return | Microsoft.AspNetCore.Mvc |
public ExecuteResult ( ActionContext, context ) : void | ||
context | ActionContext, | |
return | void |