Click or drag to resize

ApplicationExtensionBaseBeforeAuthenticate Method

Fired immediately before the configured IAuthenticationProvider object's Authenticate(String, String, NameValueCollection, Int64) method is called. This event give you an opportunity to change the user and password of the user being logged in. If you return any other value besides Continue an exception is thrown and the login is cancelled.

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

Parameters

sender
Type: NetQuarryIAppContext
The application context object.
e
Type: NetQuarryBeforeAuthenticateEventArgs
Event arguments.
Remarks
The application object is not completely loaded at this point and all objects are not completely initialized.
See Also