Controller.File 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
File(Byte[], String) |
파일 콘텐츠와 파일 형식을 사용하여 FileContentResult 개체를 만듭니다. |
File(Stream, String) |
Stream 개체와 콘텐츠 형식을 사용하여 FileStreamResult 개체를 만듭니다. |
File(String, String) |
파일 이름과 콘텐츠 형식을 사용하여 FilePathResult 개체를 만듭니다. |
File(Byte[], String, String) |
파일 콘텐츠, 콘텐츠 형식 및 대상 파일 이름을 사용하여 FileContentResult 개체를 만듭니다. |
File(Stream, String, String) |
Stream 개체, 콘텐츠 형식 및 대상 파일 이름을 사용하여 FileStreamResult 개체를 만듭니다. |
File(String, String, String) |
파일 이름, 콘텐츠 형식 및 파일 다운로드 이름을 사용하여 FilePathResult 개체를 만듭니다. |
File(Byte[], String)
파일 콘텐츠와 파일 형식을 사용하여 FileContentResult 개체를 만듭니다.
protected internal System.Web.Mvc.FileContentResult File (byte[] fileContents, string contentType);
member this.File : byte[] * string -> System.Web.Mvc.FileContentResult
Protected Friend Function File (fileContents As Byte(), contentType As String) As FileContentResult
매개 변수
- fileContents
- Byte[]
응답에 보낼 이진 콘텐츠입니다.
- contentType
- String
콘텐츠 형식(MIME 형식)입니다.
반환
파일 콘텐츠 결과 개체입니다.
적용 대상
File(Stream, String)
Stream 개체와 콘텐츠 형식을 사용하여 FileStreamResult 개체를 만듭니다.
protected internal System.Web.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType);
member this.File : System.IO.Stream * string -> System.Web.Mvc.FileStreamResult
Protected Friend Function File (fileStream As Stream, contentType As String) As FileStreamResult
매개 변수
- fileStream
- Stream
응답에 보낼 스트림입니다.
- contentType
- String
콘텐츠 형식(MIME 형식)입니다.
반환
파일 콘텐츠 결과 개체입니다.
적용 대상
File(String, String)
파일 이름과 콘텐츠 형식을 사용하여 FilePathResult 개체를 만듭니다.
protected internal System.Web.Mvc.FilePathResult File (string fileName, string contentType);
member this.File : string * string -> System.Web.Mvc.FilePathResult
Protected Friend Function File (fileName As String, contentType As String) As FilePathResult
매개 변수
- fileName
- String
응답에 보낼 파일의 경로입니다.
- contentType
- String
콘텐츠 형식(MIME 형식)입니다.
반환
파일 스트림 결과 개체입니다.
적용 대상
File(Byte[], String, String)
파일 콘텐츠, 콘텐츠 형식 및 대상 파일 이름을 사용하여 FileContentResult 개체를 만듭니다.
protected internal virtual System.Web.Mvc.FileContentResult File (byte[] fileContents, string contentType, string fileDownloadName);
abstract member File : byte[] * string * string -> System.Web.Mvc.FileContentResult
override this.File : byte[] * string * string -> System.Web.Mvc.FileContentResult
Protected Friend Overridable Function File (fileContents As Byte(), contentType As String, fileDownloadName As String) As FileContentResult
매개 변수
- fileContents
- Byte[]
응답에 보낼 이진 콘텐츠입니다.
- contentType
- String
콘텐츠 형식(MIME 형식)입니다.
- fileDownloadName
- String
브라우저에 표시되는 파일 다운로드 대화 상자에서 사용할 파일 이름입니다.
반환
파일 콘텐츠 결과 개체입니다.
적용 대상
File(Stream, String, String)
Stream 개체, 콘텐츠 형식 및 대상 파일 이름을 사용하여 FileStreamResult 개체를 만듭니다.
protected internal virtual System.Web.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string fileDownloadName);
abstract member File : System.IO.Stream * string * string -> System.Web.Mvc.FileStreamResult
override this.File : System.IO.Stream * string * string -> System.Web.Mvc.FileStreamResult
Protected Friend Overridable Function File (fileStream As Stream, contentType As String, fileDownloadName As String) As FileStreamResult
매개 변수
- fileStream
- Stream
응답에 보낼 스트림입니다.
- contentType
- String
콘텐츠 형식(MIME 형식)입니다.
- fileDownloadName
- String
브라우저에 표시되는 파일 다운로드 대화 상자에서 사용할 파일 이름입니다.
반환
파일 스트림 결과 개체입니다.
적용 대상
File(String, String, String)
파일 이름, 콘텐츠 형식 및 파일 다운로드 이름을 사용하여 FilePathResult 개체를 만듭니다.
protected internal virtual System.Web.Mvc.FilePathResult File (string fileName, string contentType, string fileDownloadName);
abstract member File : string * string * string -> System.Web.Mvc.FilePathResult
override this.File : string * string * string -> System.Web.Mvc.FilePathResult
Protected Friend Overridable Function File (fileName As String, contentType As String, fileDownloadName As String) As FilePathResult
매개 변수
- fileName
- String
응답에 보낼 파일의 경로입니다.
- contentType
- String
콘텐츠 형식(MIME 형식)입니다.
- fileDownloadName
- String
브라우저에 표시되는 파일 다운로드 대화 상자에서 사용할 파일 이름입니다.
반환
파일 스트림 결과 개체입니다.