ParseUserLogInAsync Method (String, String)Parse
Logs in a user with a username and password. On success, this saves the session to disk so you can retrieve the currently logged in user using CurrentUser.

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public static Task<ParseUser> LogInAsync(
	string username,
	string password
)

Parameters

username
Type: SystemString
The username to log in with.
password
Type: SystemString
The password to log in with.

Return Value

Type: TaskParseUser
The newly logged-in user.
See Also

Reference