Deletes a document from the specified cache.
public static bool DeleteFromCache(
ObjectCache cache,
string documentId
)
Public Shared Function DeleteFromCache(
ByVal cache As ObjectCache,
ByVal documentId As String
) As Boolean
public:
static bool DeleteFromCache(
ObjectCache^ cache,
String^ documentId
)
public static boolean deleteFromCache(ObjectCache cache, String documentId)
cache
The cache object to use. This value cannot be null.
documentId
The document identifier. This value cannot be null.
true if the document was purged successfuly from the cache; otherwise, false if the document was not found in the cache.
Use this method to delete a document previously stored in the cache with SaveToCache.
This method may return false if the document was expired and purged from the cache in another way.
This method works by calling LoadFromCache first. If this succeeds, it will set the value of Document.AutoDeleteFromCache to true and disposes the document. The document will then removes it self from the cache as usual.
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET