Skip to main content
A newer version of this page is available. .
Tab

ResourcesConfigurationSection Class

Provides programmatic access to the DevExpress resources section in the configuration file.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public class ResourcesConfigurationSection :
    ConfigurationSection

The following members return ResourcesConfigurationSection objects:

Remarks

Use the ResourcesConfigurationSection object to programmatically access the DevExpress resources configuration-file section. This section allows you to specify which client JavaScript libraries are loaded automatically. Refer to the Embedding Third-Party Libraries to learn more.

The code sample below demonstrates the corresponding DevExpress section located within the web.config file.

<devExpress>
    <!-- ... -->
    <resources>
        <add type="ThirdParty" />
        <add type="DevExtreme" />
    </resources>
</devExpress>

Inheritance

See Also