Click or drag to resize

GenericAuthenticationProviderOnAuthenticate Method

Method that does the actual authentication. Called only by the Authenticate(String, Int64) method in this class. Note that this implementation (the Generic provider) creates a user context regardless of the password

Namespace:  NetQuarry.Security
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
protected virtual UserContext OnAuthenticate(
	string user,
	string password,
	NameValueCollection profileRoles,
	long flags
)

Parameters

user
Type: SystemString
The user ID.
password
Type: SystemString
The password.
profileRoles
Type: System.Collections.SpecializedNameValueCollection
The user's roles.
flags
Type: SystemInt64
Provided for future use (from AuthenticationFlags).

Return Value

Type: UserContext
The newly created UserContext object.
See Also