ResourceExecutedContext.Result Property

Definition

Gets or sets the result.

public:
 virtual property Microsoft::AspNetCore::Mvc::IActionResult ^ Result { Microsoft::AspNetCore::Mvc::IActionResult ^ get(); void set(Microsoft::AspNetCore::Mvc::IActionResult ^ value); };
public virtual Microsoft.AspNetCore.Mvc.IActionResult Result { get; set; }
public virtual Microsoft.AspNetCore.Mvc.IActionResult? Result { get; set; }
member this.Result : Microsoft.AspNetCore.Mvc.IActionResult with get, set
Public Overridable Property Result As IActionResult

Property Value

Remarks

The Result may be provided by execution of the action itself or by another filter.

The Result has already been written to the response before being made available to resource filters.

Applies to