Skip to main content
Tab

ResourcesConfigurationSection Class

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

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 External Client 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