Click or drag to resize

SerializedCachePersistorBase Class

Base class for implementation store of SignatureSession in external cache that require serialization of signature session data.
Inheritance Hierarchy

Namespace:  ASDSoft.WebSigner.Server.Cache
Assembly:  ASDSoft.WebSigner.Server (in ASDSoft.WebSigner.Server.dll) Version: 2.5.0
Syntax
C#
public abstract class SerializedCachePersistorBase : CachePersistorBase

The SerializedCachePersistorBase type exposes the following members.

Constructors
  NameDescription
Protected methodSerializedCachePersistorBase
Initializes a new instance of the SerializedCachePersistorBase class
Top
Properties
  NameDescription
Protected propertyDefaultExpiration
Default time expiration for store signature session in the cache without interaction.
(Inherited from CachePersistorBase.)
Public propertyDocumentPersistor (Inherited from CachePersistorBase.)
Public propertySynchronizer
Implementation of notification and synchronization changes in the cache.
(Inherited from CachePersistorBase.)
Top
Methods
  NameDescription
Public methodDelete
Remove signature session from cache.
(Inherited from CachePersistorBase.)
Protected methodDeleteInternal
Specific implementation of deleting signature session from cache called from method Delete(String).
(Inherited from CachePersistorBase.)
Protected methodGetExpiredSessionsId
Get all expired signature session items in the cache for cleaning cache.
(Inherited from CachePersistorBase.)
Public methodLoad
Load and deserialize signature session from external cache.
(Overrides CachePersistorBaseLoad(String).)
Public methodLoadProgress
Load progress of signatures saving from cache.
(Inherited from CachePersistorBase.)
Protected methodLoadSerialized
The specific implementation of external cache for loading the serialized signature session from external cache.
Public methodSave
Save signature session to cache.
(Inherited from CachePersistorBase.)
Protected methodSaveInternal
Serialize and save signature session item to the external cache.
(Overrides CachePersistorBaseSaveInternal(CacheItem).)
Public methodSaveProgress
Save progress of signatures saving to cache.
(Inherited from CachePersistorBase.)
Protected methodSaveSerialized
The specific implementation of external cache for saving the serialized signature session.
Top
See Also