Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Documents Namespace > LoadDocumentOptions Class : UseCache Property |
public bool UseCache {get; set;}
'Declaration
Public Property UseCache As Boolean
'Usage
Dim instance As LoadDocumentOptions Dim value As Boolean instance.UseCache = value value = instance.UseCache
public boolean getUseCache() public void setUseCache(boolean value)
When the value of UseCache is true, then the factory will use the cache stored in one of these locations:
First, the object set in LoadDocumentOptions.Cache. If this value is not null, then it will be used. This allows the use of different cache objects for each document is required.
If the previous member did not have a valid value, then the global object set in DocumentFactory.Cache is checked. If this value is not null, it will be used.
In either case, ObjectCache must be setup with a valid LEADTOOLS cache object. The policy to use with this new document to determine when to purge the cache items must be set in CachePolicy.
Refer to Loading Documents using Leadtools.Documents for detailed information.
For an example, refer to DocumentFactory.LoadFromFile or DocumentFactory.LoadFromUri.