StaticFileOptions.OnPrepareResponse プロパティ

定義

ステータス コードとヘッダーが設定された後、本文が書き込まれる前に呼び出されます。 これを使って応答ヘッダーを追加したり変更したりすることができます。

public:
 property Action<Microsoft::AspNetCore::StaticFiles::StaticFileResponseContext ^> ^ OnPrepareResponse { Action<Microsoft::AspNetCore::StaticFiles::StaticFileResponseContext ^> ^ get(); void set(Action<Microsoft::AspNetCore::StaticFiles::StaticFileResponseContext ^> ^ value); };
public Action<Microsoft.AspNetCore.StaticFiles.StaticFileResponseContext> OnPrepareResponse { get; set; }
member this.OnPrepareResponse : Action<Microsoft.AspNetCore.StaticFiles.StaticFileResponseContext> with get, set
Public Property OnPrepareResponse As Action(Of StaticFileResponseContext)

プロパティ値

注釈

OnPrepareResponse は の前に OnPrepareResponseAsync呼び出されます。

適用対象