MembershipUsersValidateUser Method (String, String, Boolean, String) |
Validates a user's supplied password.
Namespace: ConnectedApps.Cms.Sdk.DataAssembly: ConnectedApps.Cms.Sdk.Data (in ConnectedApps.Cms.Sdk.Data.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic void ValidateUser(
string email,
string password,
bool logInUser,
string domain
)
Public Sub ValidateUser (
email As String,
password As String,
logInUser As Boolean,
domain As String
)
public:
void ValidateUser(
String^ email,
String^ password,
bool logInUser,
String^ domain
)
member ValidateUser :
email : string *
password : string *
logInUser : bool *
domain : string -> unit
Parameters
- email
- Type: SystemString
The email of the user. - password
- Type: SystemString
The password to validate. - logInUser
- Type: SystemBoolean
If true, issues HTTP cookies to identify the user in future requests. - domain
- Type: SystemString
The domain the authentication ticket cookie is issued for, if logInUser is true.
See Also