New to Telerik ReportingStart a free 30-day trial

IStorage implementation utilizing the file system storage.

Definition

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)
Parameters:directorystring

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)
Parameters:keystring

The key that denotes the stored values that should be removed.

Implements: IStorage2.DeleteMasterKey(string)