Ilumnis Authentication

AuthenticationStorage.Authenticate Method 

Uses data layer to load authenticated user or loads authenticated user from cache.

public static User Authenticate(
   string domainName,
   string userName,
   string password
);

Parameters

domainName
Domain name of the user to load.
userName
Name of the user to load.
password
Password for user whose user name is userName.

Return Value

Authenticated user object, or null if invalid domainName / userName / password supplied.

Exceptions

Exception Type Condition
StorageLoadException Thrown when current storage can't load requested user.

See Also

AuthenticationStorage Class | IExSys.Authentication.Storage Namespace