PdfLiteStorageAdapter Constructor |
Namespace:
RadPdf.Lite
Assembly:
RadPdfStandard (in RadPdfStandard.dll) Version: 4.0.0.0 (4.0.0.0)
Syntaxpublic PdfLiteStorageAdapter(
HttpContext context
)
Public Sub New (
context As HttpContext
)
Parameters
- context
- Type: Microsoft.AspNetCore.HttpHttpContext
The current HttpContext for the provider request.
Remarks
This constructor can be used independently of an ASP.NET Web application configured for use with RAD PDF.
Examplesusing (PdfLiteStorageAdapter adapter = new PdfLiteStorageAdapter(Context))
{
adapter.GetDocumentAsPdf(key);
}
See Also