PassportAuthenticationEventHandler Delegate
.NET Framework 2.0
Represents the method that handles the PassportAuthentication_OnAuthenticate event of a PassportAuthenticationModule.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Delegate Sub PassportAuthenticationEventHandler ( _ sender As Object, _ e As PassportAuthenticationEventArgs _ ) 'Usage Dim instance As New PassportAuthenticationEventHandler(AddressOf HandlerMethod)
/** @delegate */ public delegate void PassportAuthenticationEventHandler ( Object sender, PassportAuthenticationEventArgs e )
Not applicable.
Parameters
- sender
The object that raised the event.
- e
A PassportAuthenticationEventArgs object that contains the event data.
When you create a(n) PassportAuthenticationEventHandler 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.
Community Additions
ADD
Show: