FileStorage
Class
IStorage implementation utilizing the file system storage.
Definition
Namespace:Telerik.Reporting.Cache.File
Assembly:Telerik.Reporting.dll
Syntax:
C#
public class FileStorage : CacheStorage, IStorage2, IStorage
Inheritance: objectCacheStorageFileStorage
Implements:
Inherited Members
Constructors
Initializes a new instance of the FileStorage class. The files representing the stored values go under the current user's temporary folder.
C#
public FileStorage()
Initializes a new instance of the FileStorage class.
C#
public FileStorage(string directory)
The directory which will contain the files representing the stored values.
Properties
Directory
string
Gets the root directory where data will be stored.
C#
public string Directory { get; }
Methods
Deletes all keys starting with the key parameter along with their values (string or byte array) from the storage.
C#
public void DeleteMasterKey(string key)
The key that denotes the stored values that should be removed.
Implements: