Aracılığıyla paylaş


SystemWebSectionGroup.Identity Özellik

Tanım

identity Bölümü alır.

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

Özellik Değeri

IdentitySection

IdentitySection nesnesi.

Öznitelikler

Örnekler

Aşağıdaki kod örneğinde, nesnenin IdentitySection var olan bir Web uygulamasının yapılandırma dosyasından nasıl alın aldığı gösterilmektedir.

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

Açıklamalar

IdentitySection nesnesi, yapılandırma dosyasının identity bölümüne başvurur.

Şunlara uygulanır

Ayrıca bkz.