HttpResponseBase.WriteFile 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HTTP 응답 출력 스트림에 지정된 파일을 씁니다.
오버로드
WriteFile(IntPtr, Int64, Int64) |
HTTP 응답 출력 스트림에 지정된 파일을 씁니다. |
WriteFile(String, Int64, Int64) |
HTTP 응답 출력 스트림에 지정된 파일을 씁니다. |
WriteFile(String) |
지정된 파일의 내용을 HTTP 응답 출력 스트림에 파일 블록으로 씁니다. |
WriteFile(String, Boolean) |
지정된 파일의 내용을 HTTP 응답 출력 스트림에 쓴 후 내용이 메모리 블록으로 기록되는지 여부를 지정합니다. |
WriteFile(IntPtr, Int64, Int64)
HTTP 응답 출력 스트림에 지정된 파일을 씁니다.
public:
virtual void WriteFile(IntPtr fileHandle, long offset, long size);
public virtual void WriteFile (IntPtr fileHandle, long offset, long size);
abstract member WriteFile : nativeint * int64 * int64 -> unit
override this.WriteFile : nativeint * int64 * int64 -> unit
Public Overridable Sub WriteFile (fileHandle As IntPtr, offset As Long, size As Long)
매개 변수
- fileHandle
-
IntPtr
nativeint
HTTP 출력 스트림에 쓸 파일의 파일 핸들입니다.
- offset
- Int64
파일에서 쓰기를 시작할 위치입니다.
- size
- Int64
offset
에서 쓰기 시작할 바이트 수입니다.
예외
적용 대상
WriteFile(String, Int64, Int64)
HTTP 응답 출력 스트림에 지정된 파일을 씁니다.
public:
virtual void WriteFile(System::String ^ filename, long offset, long size);
public virtual void WriteFile (string filename, long offset, long size);
abstract member WriteFile : string * int64 * int64 -> unit
override this.WriteFile : string * int64 * int64 -> unit
Public Overridable Sub WriteFile (filename As String, offset As Long, size As Long)
매개 변수
- filename
- String
HTTP 출력 스트림에 쓸 파일의 이름입니다.
- offset
- Int64
파일에서 쓰기를 시작할 위치입니다.
- size
- Int64
offset
에서 쓰기 시작할 바이트 수입니다.
예외
적용 대상
WriteFile(String)
지정된 파일의 내용을 HTTP 응답 출력 스트림에 파일 블록으로 씁니다.
public:
virtual void WriteFile(System::String ^ filename);
public virtual void WriteFile (string filename);
abstract member WriteFile : string -> unit
override this.WriteFile : string -> unit
Public Overridable Sub WriteFile (filename As String)
매개 변수
- filename
- String
HTTP 출력 스트림에 쓸 파일의 이름입니다.
예외
적용 대상
WriteFile(String, Boolean)
지정된 파일의 내용을 HTTP 응답 출력 스트림에 쓴 후 내용이 메모리 블록으로 기록되는지 여부를 지정합니다.
public:
virtual void WriteFile(System::String ^ filename, bool readIntoMemory);
public virtual void WriteFile (string filename, bool readIntoMemory);
abstract member WriteFile : string * bool -> unit
override this.WriteFile : string * bool -> unit
Public Overridable Sub WriteFile (filename As String, readIntoMemory As Boolean)
매개 변수
- filename
- String
현재 응답에 쓸 파일의 이름입니다.
- readIntoMemory
- Boolean
파일을 메모리 블록에 쓰려면true
입니다.