Udostępnij za pośrednictwem


SystemWebSectionGroup.Identity Właściwość

Definicja

Pobiera sekcję identity .

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

Wartość właściwości

Obiekt IdentitySection.

Atrybuty

Przykłady

Poniższy przykład kodu pokazuje, jak uzyskać IdentitySection obiekt z pliku konfiguracji istniejącej aplikacji internetowej.

// 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)

Uwagi

Obiekt IdentitySection odwołuje się do identity sekcji pliku konfiguracji.

Dotyczy

Zobacz też