Click or drag to resize

PdfStorageAdapterRemoveExpiredDocumentKeys Method

Remove all DocumentKeys which have expired.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public void RemoveExpiredDocumentKeys()
Remarks

This method is typically used to perform maintenance on the storage provider used by RAD PDF.

This operation may require a substantial amount of time to complete.

Examples
C#
// Create a new instance of the PdfStorageAdapter using settings from web.config
using(PdfStorageAdapter adapter = new PdfStorageAdapter())
{
    adapter.RemoveExpiredDocumentKeys();
}
See Also