New to Telerik Reporting? Start a 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 that 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
Windows
XML
<configuration>
<configSections>
<section name="Telerik.Reporting" type="Telerik.Reporting.Configuration.ReportingConfigurationSection, Telerik.Reporting" allowLocation="true" allowDefinition="Everywhere" />
</configSections>
<Telerik.Reporting>
<appData path="C:\temp" />
</Telerik.Reporting>
</configuration>Unix(Linux/Mac):
XML
<configuration>
<configSections>
<section name="Telerik.Reporting" type="Telerik.Reporting.Configuration.ReportingConfigurationSection, Telerik.Reporting" allowLocation="true" allowDefinition="Everywhere" />
</configSections>
<Telerik.Reporting>
<appData path="/tmp/reportingAppData" />
</Telerik.Reporting>
</configuration>