TrustSection.Level Property
.NET Framework (current version)
Gets or sets the name of the security level under which the application will run.
Assembly: System.Web (in System.Web.dll)
<ConfigurationPropertyAttribute("level", IsRequired := True, DefaultValue := "Full")> <StringValidatorAttribute(MinLength := 1)> Public Property Level As String
The Level property specifies the security level under which the application will be run. The default is "Full".
There are five available trust levels:
Full
High
Medium
Low
Minimal
The named levels correspond to the security levels that are defined in the <trustLevel> element for <securityPolicy>.
The following code example demonstrates how to use the Level property. This code example is part of a larger example provided for the TrustSection class.
.NET Framework
Available since 2.0
Available since 2.0
Show: