FileContentResult 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ActionResult 실행할 때 응답에 이진 파일을 쓰는 을 나타냅니다.
public ref class FileContentResult : Microsoft::AspNetCore::Mvc::FileResult
public class FileContentResult : Microsoft.AspNetCore.Mvc.FileResult
type FileContentResult = class
inherit FileResult
Public Class FileContentResult
Inherits FileResult
- 상속
생성자
FileContentResult(Byte[], MediaTypeHeaderValue) |
제공된 |
FileContentResult(Byte[], String) |
제공된 |
속성
ContentType |
응답에 대한 Content-Type 헤더를 가져옵니다. (다음에서 상속됨 FileResult) |
EnableRangeProcessing |
에 대한 FileResult범위 처리를 사용하도록 설정하는 값을 가져오거나 설정합니다. (다음에서 상속됨 FileResult) |
EntityTag |
와 FileResult연결된 etag를 가져오거나 설정합니다. (다음에서 상속됨 FileResult) |
FileContents |
파일 내용을 가져오거나 설정합니다. |
FileDownloadName |
응답의 Content-Disposition 헤더에 사용할 파일 이름을 가져옵니다. (다음에서 상속됨 FileResult) |
LastModified |
와 연결된 마지막으로 수정된 FileResult정보를 가져오거나 설정합니다. (다음에서 상속됨 FileResult) |
메서드
ExecuteResult(ActionContext) |
작업 메서드의 결과 작업을 동기적으로 실행합니다. MVC에서 이 메서드를 호출하여 작업 메서드의 결과를 처리합니다. (다음에서 상속됨 ActionResult) |
ExecuteResultAsync(ActionContext) |
동작 메서드의 결과 작업을 비동기적으로 실행합니다. MVC에서 이 메서드를 호출하여 작업 메서드의 결과를 처리합니다. 이 메서드의 기본 구현은 메서드를 ExecuteResult(ActionContext) 호출하고 완료된 작업을 반환합니다. |