Interface ICredentialProvider
Provider for checking entered credentials
Namespace: Simplic.Authentication
Assembly: Simplic.Authentication.dll
Syntax
public interface ICredentialProvider
Methods
| Improve this Doc View SourceCheckCredentials(String, String, String, String)
Cehcl credentials and returns true, if the credentials are valid
Declaration
bool CheckCredentials(string domain, string userName, string rawPassword, string encryptedPassword)
Parameters
Type | Name | Description |
---|---|---|
System.String | domain | User domain |
System.String | userName | User name |
System.String | rawPassword | Raw password |
System.String | encryptedPassword | Encrypted password |
Returns
Type | Description |
---|---|
System.Boolean | True if the credentials are valid |