IdentitySection 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
配置 Web 应用程序的标识。 此类不能被继承。
public ref class IdentitySection sealed : System::Configuration::ConfigurationSection
public sealed class IdentitySection : System.Configuration.ConfigurationSection
type IdentitySection = class
inherit ConfigurationSection
Public NotInheritable Class IdentitySection
Inherits ConfigurationSection
- 继承
示例
下面的代码示例演示如何从现有 Web 应用程序的配置文件中获取 IdentitySection 对象。
// Get the Web application configuration.
System.Configuration.Configuration configuration = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("/aspnetTest");
// Get the section.
System.Web.Configuration.IdentitySection identitySection = (System.Web.Configuration.IdentitySection)configuration.GetSection("system.web/identity");
' 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)
注解
IdentitySection提供了一种以编程方式访问和修改identity
配置文件的 节的方法。
注意
IdentitySection可以根据值为 Everywhere的 section 属性AllowDefinition,从配置文件的相关节读取和写入信息。
构造函数
IdentitySection() |
用默认参数初始化 IdentitySection 类的新实例。 |