New to Telerik Reporting? Download free 30-day trial

appData Element Overview

The appData element specifies the configuration settings for the temporary application data stored on the machine.

Attributes and Elements

<appData> element

Attributes path – string attribute. Specifies the absolute path to the folder which will be used to store temp data, such as Map tiles cache and SQLite assemblies.
Parent element Telerik.Reporting – specifies the root element of the Telerik Reporting configuration settings. Only one appData child element can be used inside the Telerik.Reporting root element.

Example

XML-based configuration file:

<configuration>
    …
    <Telerik.Reporting>
        <appData path="c:\temp" />
    </Telerik.Reporting>
    …
</configuration>

JSON-based configuration file:

"telerikReporting": {
  "appData": {
    "path": "c:\\temp"
  }
}
In this article