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