This documentation is archived and is not being maintained.
System.Web.Security Namespace
.NET Framework 1.1
The System.Web.Security namespace contains classes that are used to implement ASP.NET security in Web server applications.
Classes
| Class | Description |
|---|---|
| DefaultAuthenticationEventArgs | Provides a wrapper around the default authentication services. This class cannot be inherited. |
| DefaultAuthenticationModule | Insures that an Authentication object is present in the context. This class cannot be inherited. |
| FileAuthorizationModule | Verifies that the remote user has NT permissions to access the file requested. This class cannot be inherited. |
| FormsAuthentication | Provides static methods that supply helper utilities for manipulating authentication tickets. This class cannot be inherited. |
| FormsAuthenticationEventArgs | Provides data for the FormsAuthentication_OnAuthenticate event. This class cannot be inherited. |
| FormsAuthenticationModule | Enables ASP.NET applications to use forms authentication. This class cannot be inherited. |
| FormsAuthenticationTicket | Provides a means of creating and reading the values of a forms authentication cookie (containing an authentication ticket) as used by FormsAuthenticationModule. This class cannot be inherited. |
| FormsIdentity | Provides a class to be used by FormsAuthenticationModule. This class cannot be inherited. |
| PassportAuthenticationEventArgs | 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. |
| PassportAuthenticationModule | Provides a wrapper around PassportAuthentication services. This class cannot be inherited. |
| PassportIdentity | Provides a class to be used by PassportAuthenticationModule. It provides a way for an application to access the Ticket method. This class cannot be inherited. |
| UrlAuthorizationModule | Provides URL-based authorization services for allowing or denying access to specified resources. This class cannot be inherited. |
| WindowsAuthenticationEventArgs | Provides data for the Authenticate event. This class cannot be inherited. |
| WindowsAuthenticationModule | Enables ASP.NET applications to use Windows/IIS authentication. This class cannot be inherited. |
Delegates
| Delegate | Description |
|---|---|
| DefaultAuthenticationEventHandler | Represents the method that handles the Authenticate event of a DefaultAuthenticationModule. |
| FormsAuthenticationEventHandler | Represents the method that will handle the Authenticate event of a FormsAuthenticationModule. |
| PassportAuthenticationEventHandler | Represents the method that handles the PassportAuthentication_OnAuthenticate event of a PassportAuthenticationModule. |
| WindowsAuthenticationEventHandler | Represents the method that handles the WindowsAuthentication_OnAuthenticate event of a WindowsAuthenticationModule. |
See Also
Show: