| ||||||||||||||||||||||||||||||||
AuthorizationSection ClassSystem.Web.Configuration Namespace .NET Framework version 2.0 Configures the authorization process for a Web application. This class cannot be inherited.
|
||||||||||||||||||||||||||||||||
| Visibility | Name | Value Type | Accessibility |
|---|---|---|---|
| public | Rules | AuthorizationRuleCollection | [ Get ] |
| Visibility | Name | Parameters | Return Type |
|---|---|---|---|
| protected | PostDeserialize | ( ) | Void |
The AuthorizationSection class provides a way to programmatically access and modify the authorization section of a configuration file.
This type is part of a group that includes the AuthorizationRule, AuthorizationRuleCollection, and AuthorizationRuleAction types.
NOTE: The AuthorizationSection can read and write information from and to the related section of the configuration file according to the section property AllowDefinition whose value is Everywhere.
The following code example shows how to obtain the AuthorizationSection object from the configuration file of an existing Web application. You can use this object to access its members. The configuration file will contain a setup similar to the following.
NOTE: If you use the credentials section, be sure to follow the guidelines explained at ASP.NET Authentication. For scalability and better security capability, it is recommended that you use an external database to store the users' credentials. For more information about building secure ASP.NET applications, search the Microsoft MSDN Web site ( msdn.microsoft.com ) for
"Securing Your ASP.NET Application" and "Building Secure ASP.NET Applications:
Authentication, Authorization, and Secure Communication."
<authorization> <allow users = "userName" roles = "admin" verbs = "post" /> <deny users = "*" verbs = "post" /> </authorization>
// Get the Web application configuration. System.Configuration.Configuration configuration = WebConfigurationManager.OpenWebConfiguration ( "/aspnetTest" ); // Get the section. AuthorizationSection authorizationSection = ( AuthorizationSection ) configuration.GetSection ( "system.web/authorization" ); | ||
| C# | VB | |
ASP.NET Configuration <authorization> Section AuthorizationRuleAction Enumeration ASP.NET Authorization
Check out related books at Amazon
© 2000-2008 Rey Nuñez All rights reserved.
If you have any question, comment or suggestion
about this site, please send us a note
You can help support aspxtreme