Click or drag to resize

PdfStorageAdapter.RemoveOldPdfs Method

Remove PDF data from RAD PDF's pdfs table older than a given period of time and not in use by a PdfDocument in storage.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 4.3.0.0 (4.3.0.0)
Syntax
public void RemoveOldPdfs(
	TimeSpan olderThan
)

Parameters

olderThan
Type: System.TimeSpan
Resources older than this value will be removed from storage.
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.

olderThan should be a positive TimeSpan value.

Examples
In this example, we run a portion of the RAD PDF maintenance routinue. If using RAD PDF's storage as temporary cache, a value of about 7 days is typical.
C#
// Create a new instance of the PdfStorageAdapter using settings from web.config
using(PdfStorageAdapter adapter = new PdfStorageAdapter())
{
    adapter..RemoveOldPdfs(new TimeSpan(7, 0, 0, 0));
}
See Also
This website uses cookies to identify your session and other necessary functions. By using this website, you are agreeing to our Terms of Use and Privacy Policy (updated April 26 2021).
Learn About Cookies
Got it!