FileCache constructor
init
Creates new instance of FileCache class.
def __init__(self, cache_path):
...
| Parameter |
Type |
Description |
| cache_path |
System.String |
Relative or absolute path where document cache will be stored. |
Exceptions
| Exception |
Description |
| ArgumentNullException |
Thrown when cache_path is null. |
init
Creates new instance of FileCache class.
def __init__(self, cache_path, cache_sub_folder):
...
| Parameter |
Type |
Description |
| cache_path |
System.String |
Relative or absolute path where document cache will be stored. |
| cache_sub_folder |
System.String |
The sub-folder to append to cache_path. |
Exceptions
| Exception |
Description |
| ArgumentNullException |
Thrown when cache_path is null. |
| ArgumentNullException |
Thrown when cache_sub_folder is null. |
See Also