FileCache
FileCache(string)
Creates new instance of FileCache
class.
public FileCache(string cachePath)
Parameter |
Type |
Description |
cachePath |
String |
Relative or absolute path where document cache will be stored. |
Exceptions
exception |
condition |
ArgumentNullException |
Thrown when cachePath is null. |
See Also
FileCache(string, string)
Creates new instance of FileCache
class.
public FileCache(string cachePath, string cacheSubFolder)
Parameter |
Type |
Description |
cachePath |
String |
Relative or absolute path where document cache will be stored. |
cacheSubFolder |
String |
The sub-folder to append to cachePath. |
Exceptions
exception |
condition |
ArgumentNullException |
Thrown when cachePath is null. |
ArgumentNullException |
Thrown when cacheSubFolder is null. |
See Also