Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
System.Web.Security Namespace

The System.Web.Security namespace contains classes that are used to implement ASP.NET security in Web server applications.

The Membership class is used by ASP.NET applications to validate user credentials and manage user settings such as passwords and e-mail addresses. The Roles class enables you to manage authorization for your application based on groups of users assigned to roles in the Web application.

Both the Membership class and the Roles class work with providers, classes that access your application's data store to retrieve membership and role information. Membership and role information can be stored in a Microsoft SQL Server database using the SqlMembershipProvider and SqlRoleProvider classes; in an Active Directory using the ActiveDirectoryMembershipProvider and AuthorizationStoreRoleProvider classes, or in a custom data source using implementations of the MembershipProvider and RoleProvider classes.

You configure ASP.NET membership using the membership Element (ASP.NET Settings Schema). When an application using membership is accessed, ASP.NET creates an instance of the Membership class that you can use to query membership information. Provider-specific implementations of the MembershipUser class contain information about the user accessing the page. You can create custom implementations of the MembershipUser class for your application.

You configure ASP.NET roles using the roleManager Element (ASP.NET Settings Schema). ASP.NET creates an instance of the Roles class that contains information about the role membership of the current user.

ASP.NET provides server controls that interact with the Membership class and the Roles class. The Login, CreateUserWizard, and ChangePassword controls work with the Membership class to simplify creating an authenticated Web application, and the LoginView control uses role-specific templates to customize Web pages for specific groups of users.

  ClassDescription
Public classActiveDirectoryMembershipProviderManages storage of membership information for an ASP.NET application in Active Directory and Active Directory Application Mode servers.
Public classActiveDirectoryMembershipUser Exposes and updates membership user information stored in an Active Directory data store.
Public classAnonymousIdentificationEventArgs Provides data for the AnonymousIdentification_Creating event. This class cannot be inherited.
Public classAnonymousIdentificationModule Manages anonymous identifiers for the ASP.NET application.
Public classAuthorizationStoreRoleProvider Manages storage of role-membership information for an ASP.NET application in an authorization-manager policy store, either in an XML file, in an Active Directory, or on an Active Directory Application Mode server.
Public classDefaultAuthenticationEventArgs Provides data for the DefaultAuthentication_OnAuthenticate event. This class cannot be inherited.
Public classDefaultAuthenticationModule Ensures that an authentication object is present in the context. This class cannot be inherited.
Public classFileAuthorizationModule Verifies that the user has permission to access the file requested. This class cannot be inherited.
Public classFormsAuthentication Manages forms-authentication services for Web applications. This class cannot be inherited.
Public classFormsAuthenticationEventArgs Provides data for the FormsAuthentication_OnAuthenticate event. This class cannot be inherited.
Public classFormsAuthenticationModule Sets the identity of the user for an ASP.NET application when forms authentication is enabled. This class cannot be inherited.
Public classFormsAuthenticationTicket Provides access to properties and values of the ticket used with forms authentication to identify users. This class cannot be inherited.
Public classFormsIdentity Represents a user identity authenticated using forms authentication. This class cannot be inherited.
Public classMembership Validates user credentials and manages user settings. This class cannot be inherited.
Public classMembershipCreateUserException The exception that is thrown when a user is not successfully created by a membership provider.
Public classMembershipPasswordException The exception that is thrown when a password cannot be retrieved from the password store.
Public classMembershipProvider Defines the contract that ASP.NET implements to provide membership services using custom membership providers.
Public classMembershipProviderCollectionA collection of objects that inherit the MembershipProvider abstract class.
Public classMembershipUserExposes and updates membership user information in the membership data store.
Public classMembershipUserCollection A collection of MembershipUser objects.
Public classPassportAuthenticationEventArgs The event argument passed to the Authenticate event by a PassportAuthenticationModule. Since there is already an identity at this point, this is useful mainly for attaching a custom IPrincipal object to the context using the supplied identity. This class is deprecated.
Public classPassportAuthenticationModule Provides a wrapper around Passport Authentication services. This class cannot be inherited. This class is deprecated.
Public classPassportIdentityProvides a class to be used by PassportAuthenticationModule. It provides a way for an application to access the Ticket method. This class cannot be inherited. This class is deprecated.
Public classPassportPrincipal Represents a Passport-authenticated principal. This class is deprecated.
Public classRoleManagerEventArgs Provides event data for the GetRoles event of the RoleManagerModule class.
Public classRoleManagerModule Manages a RolePrincipal instance for the current user. This class cannot be inherited.
Public classRolePrincipal Represents security information for the current HTTP request, including role membership. This class cannot be inherited.
Public classRoleProvider Defines the contract that ASP.NET implements to provide role-management services using custom role providers.
Public classRoleProviderCollection A collection of objects that inherit the RoleProvider abstract class.
Public classRoles Manages user membership in roles for authorization checking in an ASP.NET application. This class cannot be inherited.
Public classSqlMembershipProviderManages storage of membership information for an ASP.NET application in a SQL Server database.
Public classSqlRoleProvider Manages storage of role membership information for an ASP.NET application in a SQL Server database.
Public classUrlAuthorizationModule Verifies that the user has permission to access the URL requested. This class cannot be inherited.
Public classValidatePasswordEventArgs Provides event data for the ValidatingPassword event of the MembershipProvider class.
Public classWindowsAuthenticationEventArgs Provides data for the WindowsAuthentication_OnAuthenticate event. This class cannot be inherited.
Public classWindowsAuthenticationModule Sets the identity of the user for an ASP.NET application when Windows authentication is enabled. This class cannot be inherited.
Public classWindowsTokenRoleProviderGets role information for an ASP.NET application from Windows group membership.
  DelegateDescription
Public delegateAnonymousIdentificationEventHandler Represents the method that handles the AnonymousIdentification_Creating event of a AnonymousIdentificationModule.
Public delegateDefaultAuthenticationEventHandler Represents the method that handles the DefaultAuthentication_OnAuthenticate event of a DefaultAuthenticationModule.
Public delegateFormsAuthenticationEventHandler Represents the method that handles the FormsAuthentication_OnAuthenticate event of a FormsAuthenticationModule.
Public delegateMembershipValidatePasswordEventHandler Represents the method that will handle the ValidatingPassword event of the MembershipProvider class.
Public delegatePassportAuthenticationEventHandler Represents the method that handles the PassportAuthentication_OnAuthenticate event of a PassportAuthenticationModule. This class is deprecated.
Public delegateRoleManagerEventHandler Defines the delegate for the GetRoles event of the RoleManagerModule class.
Public delegateWindowsAuthenticationEventHandler Represents the method that handles the WindowsAuthentication_OnAuthenticate event of a WindowsAuthenticationModule.
  EnumerationDescription
Public enumerationActiveDirectoryConnectionProtection Specifies the connection protection options supported by the ActiveDirectoryMembershipProvider class.
Public enumerationCookieProtection Describes how information in a cookie is protected.
Public enumerationMembershipCreateStatus Describes the result of a CreateUser operation.
Public enumerationMembershipPasswordFormat Describes the encryption format for storing passwords for membership users.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
dll      Jereme Guenther ... Thomas Lee   |   Edit   |   Show History
in System.Web.dll
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker