|
Name |
Description |
|
CreateFileResponse(DocumentInfo, String, String)
|
Create http file response with a given document info, media type and disposition header. The file can be downloaded or
will be viewed in the browser client.
|
|
CreateFileResponse(String, ActionStream, String, String)
|
Create http file response with a given file name with an action named as beginWritingStream.
That action is called when an output stream is available, allowing the action to write to it directly.
Thus, allow we can write a largest file (more than 1GB with controlling memory usage).
|
|
CreateFileResponse(String, Byte, String, String)
|
Create http file response with a given file name, file content, media type and disposition header. The file can be downloaded or
will be viewed in the browser client.
|
|
CreateFileResponse(String, Stream, String, String)
|
Create http file response with a given file name, file stream, media type and disposition header. The file can be downloaded or
will be viewed in the browser client.
|
|
CreateFileResponse(String, String, String, String)
|
Create http file response with a given file name, file path, media type and disposition header. The file can be downloaded or
will be viewed in the browser client.
|