ccbb6df09311a73b713282c2bf172eb20ea9e3a8
Guides/Izenda-AdHoc-Driver.md
| ... | ... | @@ -186,7 +186,7 @@ Getting data from several data source providers may take a lot of time and resou |
| 186 | 186 | You can configure the cache yourself by using the following properties and methods: |
| 187 | 187 | |
| 188 | 188 | * **DataCacheExpiration:** Sets the date for cache expiration. All data in the cache older than the specified date will be cleared (removed from the cache). For example, if you want to clear all data more than two days old, you should set: ``AdHocSettings.DataCacheExpiration = DateTime.Now.AddDays(-2);`` |
| 189 | -* **CacheReports method:** Indicates that all reports should or should not be cached (enabled by default in later versions of Izenda): ``fusionDriver.CacheReports = true;`` |
|
| 189 | +* **CacheReports method:** Indicates that all reports should or should not be cached (enabled by default in later versions of Izenda): ``AdHocSettings.CacheReports = true;`` |
|
| 190 | 190 | * **DataCache Interval:** Sets the number of seconds between cache refreshes. Example: ``AdHocSettings.DataCacheInterval = 60 * 24 * 30;`` |
| 191 | 191 | |
| 192 | 192 | ###Sample use |