PageModel.PhysicalFile メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
PhysicalFile(String, String) |
() で |
PhysicalFile(String, String, String) |
() で |
PhysicalFile(String, String)
- ソース:
- PageModel.cs
- ソース:
- PageModel.cs
- ソース:
- PageModel.cs
() でphysicalPath
指定され、 が Content-Type として指定されたファイルを返しますcontentType
。Status200OK
public:
virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType);
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType);
abstract member PhysicalFile : string * string -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
override this.PhysicalFile : string * string -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Overridable Function PhysicalFile (physicalPath As String, contentType As String) As PhysicalFileResult
パラメーター
- physicalPath
- String
返されるファイルの物理パス。
- contentType
- String
ファイルの Content-Type。
戻り値
応答用に作成された PhysicalFileResult 。
適用対象
PhysicalFile(String, String, String)
- ソース:
- PageModel.cs
- ソース:
- PageModel.cs
- ソース:
- PageModel.cs
() でphysicalPath
指定されたファイルを Content-Type として指定し、指定contentType
した fileDownloadName
を推奨されるファイル名として返Status200OKします。
public:
virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType, System::String ^ fileDownloadName);
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string fileDownloadName);
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string? fileDownloadName);
abstract member PhysicalFile : string * string * string -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
override this.PhysicalFile : string * string * string -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Overridable Function PhysicalFile (physicalPath As String, contentType As String, fileDownloadName As String) As PhysicalFileResult
パラメーター
- physicalPath
- String
返されるファイルの物理パス。
- contentType
- String
ファイルの Content-Type。
- fileDownloadName
- String
推奨されるファイル名。
戻り値
応答用に作成された PhysicalFileResult 。