Click or drag to resize

PdfLiteStorageAdapter Constructor

Initializes a new instance of the PdfLiteStorageAdapter class.

Namespace:  RadPdf.Lite
Assembly:  RadPdfStandard (in RadPdfStandard.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
public PdfLiteStorageAdapter(
	HttpContext context
)

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.
Examples
C#
using (PdfLiteStorageAdapter adapter = new PdfLiteStorageAdapter(Context))
{
    adapter.GetDocumentAsPdf(key);
}
See Also