SystemWebSectionGroup.SecurityPolicy Eigenschap
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Hiermee haalt u de securityPolicy sectie op.
public:
property System::Web::Configuration::SecurityPolicySection ^ SecurityPolicy { System::Web::Configuration::SecurityPolicySection ^ get(); };
[System.Configuration.ConfigurationProperty("securityPolicy")]
public System.Web.Configuration.SecurityPolicySection SecurityPolicy { get; }
[<System.Configuration.ConfigurationProperty("securityPolicy")>]
member this.SecurityPolicy : System.Web.Configuration.SecurityPolicySection
Public ReadOnly Property SecurityPolicy As SecurityPolicySection
Waarde van eigenschap
Het SecurityPolicySection-object.
- Kenmerken
Voorbeelden
In het volgende codevoorbeeld ziet u hoe u het SecurityPolicySection object ophaalt uit het configuratiebestand van een bestaande webtoepassing.
// Get the securityPolicy section.
SecurityPolicySection securityPolicy =
systemWeb.SecurityPolicy;
// Read section information.
info =
securityPolicy.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 securityPolicy section.
Dim securityPolicy _
As SecurityPolicySection = _
systemWeb.SecurityPolicy
' Read section information.
info = securityPolicy.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)
Opmerkingen
Het SecurityPolicySection object verwijst naar de securityPolicy sectie van het configuratiebestand.