This documentation is archived and is not being maintained.

SystemWebSectionGroup.DeviceFilters Property

Gets the deviceFilters section.

Namespace:  System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

'Declaration
<ConfigurationPropertyAttribute("deviceFilters")> _
Public ReadOnly Property DeviceFilters As DefaultSection
'Usage
Dim instance As SystemWebSectionGroup 
Dim value As DefaultSection 

value = instance.DeviceFilters

The DefaultSection object refers to the deviceFilters section of the configuration file.

The following code example shows how to obtain the DefaultSection object from the configuration file of an existing Web application.

' Get the deviceFilters section. 
Dim deviceFilters As DefaultSection = _
systemWeb.DeviceFilters
' Read section information.
info = deviceFilters.SectionInformation

name = info.SectionName
type = info.Type
declared = info.IsDeclared.ToString()
msg = String.Format("Name:     {0}" + _
ControlChars.Lf + "Declared: {1}" + _
ControlChars.Lf + "Type:     {2}" + _
ControlChars.Lf, name, declared, type)

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: