FormsAuthenticationEventHandler Delegate
Represents the method that will handle the Authenticate event of a FormsAuthenticationModule.
[Visual Basic] <Serializable> Public Delegate Sub FormsAuthenticationEventHandler( _ ByVal sender As Object, _ ByVal e As FormsAuthenticationEventArgs _ ) [C#] [Serializable] public delegate void FormsAuthenticationEventHandler( object sender, FormsAuthenticationEventArgs e ); [C++] [Serializable] public __gc __delegate void FormsAuthenticationEventHandler( Object* sender, FormsAuthenticationEventArgs* e );
[JScript] In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.
Parameters [Visual Basic, C#, C++]
The declaration of your event handler must have the same parameters as the FormsAuthenticationEventHandler delegate declaration.
- sender
- The source of the event.
- e
- A FormsAuthenticationEventArgs that contains the event data.
Remarks
When you create a FormsAuthenticationEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event handler delegates, see Events and Delegates
Requirements
Namespace: System.Web.Security
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
Assembly: System.Web (in System.Web.dll)