WindowsAuthenticationEventHandler Delegate
Represents the method that handles the WindowsAuthentication_OnAuthenticate event of a WindowsAuthenticationModule.
[Visual Basic] <Serializable> Public Delegate Sub WindowsAuthenticationEventHandler( _ ByVal sender As Object, _ ByVal e As WindowsAuthenticationEventArgs _ ) [C#] [Serializable] public delegate void WindowsAuthenticationEventHandler( object sender, WindowsAuthenticationEventArgs e ); [C++] [Serializable] public __gc __delegate void WindowsAuthenticationEventHandler( Object* sender, WindowsAuthenticationEventArgs* 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 WindowsAuthenticationEventHandler delegate declaration.
- sender
- The source of the event.
- e
- A WindowsAuthenticationEventArgs that contains the event data.
Remarks
When you create a WindowsAuthenticationEventHandler delegate, you identify the method to handle the event. To associate the event with your EventHandler, add an instance of the delegate to the event. The EventHandler is called whenever the event occurs, unless you remove the delegate.
For more information about EventHandler 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)