DocumentSave Method (HttpResponse, Boolean, String) |
Saves the document into a HTTP stream.
Namespace:
ExpertPdf.PdfCreator
Assembly:
epdfcreator (in epdfcreator.dll) Version: 17.0.0
Syntax public void Save(
HttpResponse httpResponse,
bool inline,
string downloadFileName
)
Public Sub Save (
httpResponse As HttpResponse,
inline As Boolean,
downloadFileName As String
)
Parameters
- httpResponse
- Type: System.WebHttpResponse
The HTTP response object. - inline
- Type: SystemBoolean
If inline is true the PDF document will be automatically opened in browser, otherwise the
user will be asked to save or open the downloaded PDF document. - downloadFileName
- Type: SystemString
The name given to the PDF document. This name is used by the browser when it opens the PDF document inline
or the name suggested for saving the document when the document is sent as an attachment
See Also