MembershipUsersValidateUser Method (Guid, 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(
Guid userId,
string password,
bool logInUser,
string domain
)
Public Sub ValidateUser (
userId As Guid,
password As String,
logInUser As Boolean,
domain As String
)
public:
void ValidateUser(
Guid userId,
String^ password,
bool logInUser,
String^ domain
)
member ValidateUser :
userId : Guid *
password : string *
logInUser : bool *
domain : string -> unit
Parameters
- userId
- Type: SystemGuid
The unique identifier 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