Method | Description | |
---|---|---|
Authenticate ( |
Authenticates the user based on a request from a third-party provider. Will set the username and returnUrl values.
|
|
Authenticate ( UserLogin user, string password ) : System.Boolean |
Authenticates the user based on user name and password
|
|
ChangePassword ( UserLogin user, string oldPassword, string newPassword, string &warningMessage ) : bool |
Changes the password.
|
|
EncodePassword ( UserLogin user, string password ) : String |
Encodes the password.
|
|
GenerateLoginUrl ( |
Generates the login URL.
|
|
ImageUrl ( ) : String |
Gets the URL of an image that should be displayed.
|
|
IsReturningFromAuthentication ( |
Tests the Http Request to determine if authentication should be tested by this authentication provider.
|
|
SetPassword ( UserLogin user, string password ) : void |
Sets the password.
|
public abstract Authenticate ( |
||
request | The request. | |
userName | string | Name of the user. |
returnUrl | string | The return URL. |
return | System.Boolean |
public abstract Authenticate ( UserLogin user, string password ) : System.Boolean | ||
user | UserLogin | The user. |
password | string | The password. |
return | System.Boolean |
public abstract ChangePassword ( UserLogin user, string oldPassword, string newPassword, string &warningMessage ) : bool | ||
user | UserLogin | The user. |
oldPassword | string | The old password. |
newPassword | string | The new password. |
warningMessage | string | The warning message. |
return | bool |
public abstract EncodePassword ( UserLogin user, string password ) : String | ||
user | UserLogin | The user. |
password | string | The password. |
return | String |
public abstract GenerateLoginUrl ( |
||
request | The request. | |
return |
public abstract IsReturningFromAuthentication ( |
||
request | The request. | |
return | System.Boolean |
public abstract SetPassword ( UserLogin user, string password ) : void | ||
user | UserLogin | The user. |
password | string | The password. |
return | void |