SystemWebSectionGroup.Identity Property

Definition

Gets the identity section.

public:
 property System::Web::Configuration::IdentitySection ^ Identity { System::Web::Configuration::IdentitySection ^ get(); };
[System.Configuration.ConfigurationProperty("identity")]
public System.Web.Configuration.IdentitySection Identity { get; }
[<System.Configuration.ConfigurationProperty("identity")>]
member this.Identity : System.Web.Configuration.IdentitySection
Public ReadOnly Property Identity As IdentitySection

Property Value

The IdentitySection object.

Attributes

Examples

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

// Get the identity section.
IdentitySection identity =
    systemWeb.Identity;
// Read section information.
info =
    identity.SectionInformation;
name = info.SectionName;
type = info.Type;
declared = info.IsDeclared.ToString();
msg = String.Format(
    "Name:     {0}\nDeclared: {1}\nType:     {2}\n",
    name, declared, type);
' Get the identity section.
Dim identity As IdentitySection = _
systemWeb.Identity
' Read section information.
info = identity.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)

Remarks

The IdentitySection object refers to the identity section of the configuration file.

Applies to

See also