Back to Devexpress

ResourcesConfigurationSection Class

aspnet-devexpress-dot-web-6244f68d.md

latest2.0 KB
Original Source

ResourcesConfigurationSection Class

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

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public class ResourcesConfigurationSection :
    ConfigurationSection
vb
Public Class ResourcesConfigurationSection
    Inherits 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.

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

Inheritance

Object ConfigurationElement ConfigurationSection ResourcesConfigurationSection

See Also

ResourcesConfigurationSection Members

DevExpress.Web Namespace