Click or drag to resize

ApplicationExtensionBaseAfterAuthenticate Method

Fired immediately after the configured IAuthenticationProvider object's Authenticate(String, String, NameValueCollection, Int64) method is called. At this point the user has been authenticated and the profiles for the user have been loaded.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public virtual void AfterAuthenticate(
	IAppContext sender,
	EAPEventArgs e
)

Parameters

sender
Type: NetQuarryIAppContext
The application context object.
e
Type: NetQuarryEAPEventArgs
Event arguments (beginning with v4.5.2, a AfterAuthenticateEventArgs object).
Remarks
Note that the IAppContext object is not completely loaded at this point and all objects are not completely initialized. Beginning with v4.5.2, a AfterAuthenticateEventArgs object is provided as e.
See Also