次の方法で共有


PageBase.PhysicalFile メソッド

定義

オーバーロード

PhysicalFile(String, String, String)

指定した を Content-Type として指定し、指定した contentType を推奨されるファイル名として使用して、(Status200OK) でphysicalPath指定されたfileDownloadNameファイルを返します。

PhysicalFile(String, String)

指定した を Content-Type として指定した (Status200OK) でphysicalPath指定したcontentTypeファイルを返します。

PhysicalFile(String, String, String)

ソース:
PageBase.cs
ソース:
PageBase.cs
ソース:
PageBase.cs

指定した を Content-Type として指定し、指定した contentType を推奨されるファイル名として使用して、(Status200OK) でphysicalPath指定されたfileDownloadNameファイルを返します。

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

適用対象

PhysicalFile(String, String)

ソース:
PageBase.cs
ソース:
PageBase.cs
ソース:
PageBase.cs

指定した を Content-Type として指定した (Status200OK) でphysicalPath指定したcontentTypeファイルを返します。

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

適用対象