Class FileCache
FileCache class
Class that allows to work with the local on-disk cache.
public class FileCache : ICache
Constructors
Name |
Description |
FileCache() |
Initializes new instance of FileCache class. |
FileCache(string) |
Initializes new instance of FileCache class. |
Methods
Name |
Description |
GetKeys(string) |
Returns all file names that contains filter in filename. |
Set(string, object) |
Serializes data to the local disk. |
TryGetValue(string, out object) |
Deserializes data associated with this key if present. |
See Also