Click or drag to resize

PdfStorageAdapter Constructor

Initializes a new instance of the PdfStorageAdapter class.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public PdfStorageAdapter()
Remarks
This constructor should only be used inside of an ASP.NET Web application configured for use with RAD PDF. To use this class outside of an ASP.NET Web application, use the PdfStorageAdapter(PdfStorageProvider) constructor.
Examples
C#
using (PdfStorageAdapter adapter = new PdfStorageAdapter())
{
    adapter.RemoveExpiredDocumentKeys();
}
See Also