Partager via


SystemWebSectionGroup.Trust Propriété

Définition

Obtient la section trust.

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

Valeur de propriété

Objet TrustSection.

Attributs

Exemples

L’exemple de code suivant montre comment obtenir l’objet TrustSection à partir du fichier de configuration d’une application web existante.

// Get the trust section.
TrustSection trust =
    systemWeb.Trust;
// Read section information.
info =
    trust.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 trust section.
Dim trust As TrustSection = _
systemWeb.Trust
' Read section information.
info = trust.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)

Remarques

L’objet TrustSection fait référence à la section trust du fichier de configuration.

S’applique à

Voir aussi