SecurityPolicySection.TrustLevels Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene la raccolta TrustLevels.
public:
property System::Web::Configuration::TrustLevelCollection ^ TrustLevels { System::Web::Configuration::TrustLevelCollection ^ get(); };
[System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)]
public System.Web.Configuration.TrustLevelCollection TrustLevels { get; }
[<System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)>]
member this.TrustLevels : System.Web.Configuration.TrustLevelCollection
Public ReadOnly Property TrustLevels As TrustLevelCollection
Valore della proprietà
Raccolta di oggetti TrustLevels.
- Attributi
Esempio
Nell'esempio di codice seguente viene illustrato come usare la TrustLevels proprietà , aggiungere un elemento a livello di attendibilità al file di configurazione e aggiornare il file di configurazione. Questo esempio di codice fa parte di un esempio più ampio fornito per la SecurityPolicySection classe .
// Display elements of the TrustLevels collection property.
for (int i = 0; i < configSection.TrustLevels.Count; i++)
{
Console.WriteLine();
Console.WriteLine("TrustLevel {0}:", i);
Console.WriteLine("Name: {0}",
configSection.TrustLevels.Get(i).Name);
Console.WriteLine("Type: {0}",
configSection.TrustLevels.Get(i).PolicyFile);
}
// Add a TrustLevel element to the configuration file.
configSection.TrustLevels.Add(new TrustLevel("myTrust", "mytrust.config"));
' Display elements of the TrustLevels collection property.
For i As Integer = 0 To (configSection.TrustLevels.Count - 1)
Console.WriteLine()
Console.WriteLine("TrustLevel {0}:", i)
Console.WriteLine("Name: {0}", _
configSection.TrustLevels.Get(i).Name)
Console.WriteLine("Type: {0}", _
configSection.TrustLevels.Get(i).PolicyFile)
Next i
' Add a TrustLevel element to the configuration file.
configSection.TrustLevels.Add(New TrustLevel("myTrust", "mytrust.config"))
Commenti
I valori predefiniti per la TrustLevels proprietà sono Full
, , Medium``High
, Low
e Minimal
. Gli elementi della TrustLevels raccolta specificano un nome a livello di sicurezza e un file di criteri associato. È possibile estendere il sistema di sicurezza specificando il proprio elemento a livello di attendibilità denominato mappato a un file specificato dall'attributo policyFile
. Per informazioni sulla creazione di elementi a livello di attendibilità, vedere elemento trustLevel per securityPolicy (schema ASP.NET Impostazioni).For information about creating trust-level elements, see trustLevel Element for securityPolicy (ASP.NET Impostazioni Schema).