StaticFileOptions.OnPrepareResponseAsync Property

Definition

Called after the status code and headers have been set, but before the body has been written. This can be used to add or change the response headers.

public Func<Microsoft.AspNetCore.StaticFiles.StaticFileResponseContext,System.Threading.Tasks.Task> OnPrepareResponseAsync { get; set; }
member this.OnPrepareResponseAsync : Func<Microsoft.AspNetCore.StaticFiles.StaticFileResponseContext, System.Threading.Tasks.Task> with get, set
Public Property OnPrepareResponseAsync As Func(Of StaticFileResponseContext, Task)

Property Value

Remarks

OnPrepareResponse is called before OnPrepareResponseAsync.

Applies to