IdentitySection Class
Configures the identity of a Web application. This class cannot be inherited.
Assembly: System.Web (in System.Web.dll)
The IdentitySection provides a way to programmatically access and modify the identity section of a configuration file.
Note: |
|---|
The IdentitySection can read and write information from and to the related section of the configuration file according to the section property AllowDefinition whose value is Everywhere. |
The following code example shows how to obtain the IdentitySection object from the configuration file of an existing Web application.
' Get the Web application configuration. Dim configuration As System.Configuration.Configuration = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("/aspnetTest") ' Get the section. Dim identitySection As System.Web.Configuration.IdentitySection = CType(configuration.GetSection("system.web/identity"), System.Web.Configuration.IdentitySection)
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationSection
System.Web.Configuration.IdentitySection
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.
Note: