FileContentResult 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
FileContentResult(Byte[], MediaTypeHeaderValue) |
제공된 |
FileContentResult(Byte[], String) |
제공된 |
FileContentResult(Byte[], MediaTypeHeaderValue)
- Source:
- FileContentResult.cs
- Source:
- FileContentResult.cs
- Source:
- FileContentResult.cs
제공된 fileContents
및 contentType
를 사용하여 새 FileContentResult instance 만듭니다.
public:
FileContentResult(cli::array <System::Byte> ^ fileContents, Microsoft::Net::Http::Headers::MediaTypeHeaderValue ^ contentType);
public FileContentResult (byte[] fileContents, Microsoft.Net.Http.Headers.MediaTypeHeaderValue contentType);
new Microsoft.AspNetCore.Mvc.FileContentResult : byte[] * Microsoft.Net.Http.Headers.MediaTypeHeaderValue -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Sub New (fileContents As Byte(), contentType As MediaTypeHeaderValue)
매개 변수
- fileContents
- Byte[]
파일 내용을 나타내는 바이트입니다.
- contentType
- MediaTypeHeaderValue
응답의 Content-Type 헤더입니다.
적용 대상
FileContentResult(Byte[], String)
- Source:
- FileContentResult.cs
- Source:
- FileContentResult.cs
- Source:
- FileContentResult.cs
제공된 fileContents
및 contentType
를 사용하여 새 FileContentResult instance 만듭니다.
public:
FileContentResult(cli::array <System::Byte> ^ fileContents, System::String ^ contentType);
public FileContentResult (byte[] fileContents, string contentType);
new Microsoft.AspNetCore.Mvc.FileContentResult : byte[] * string -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Sub New (fileContents As Byte(), contentType As String)
매개 변수
- fileContents
- Byte[]
파일 내용을 나타내는 바이트입니다.
- contentType
- String
응답의 Content-Type 헤더입니다.