The ParseUser type exposes the following members.
Properties
Name | Description | |
---|---|---|
ACL |
Gets or sets the ParseACL governing this object.
(Inherited from ParseObject.) | |
ClassName |
Gets the class name for the ParseObject.
(Inherited from ParseObject.) | |
CreatedAt |
Gets the first time this object was saved as the server sees it, so that if you create a
ParseObject, then wait a while, and then call SaveAsync, the
creation time will be the time of the first SaveAsync call rather than
the time the object was created locally.
(Inherited from ParseObject.) | |
CurrentUser |
Gets the currently logged in ParseUser with a valid session, either from memory or disk
if necessary.
| |
Sets the email address.
| ||
IsAuthenticated |
Whether the ParseUser has been authenticated on this device. Only an authenticated
ParseUser can be saved and deleted.
| |
IsDataAvailable |
Gets whether the ParseObject has been fetched.
(Inherited from ParseObject.) | |
IsDirty |
Indicates whether this ParseObject has unsaved changes.
(Inherited from ParseObject.) | |
IsNew |
Returns true if this object was created by the Parse server when the
object might have already been there (e.g. in the case of a Facebook
login)
(Inherited from ParseObject.) | |
Item |
Gets or sets a value on the object. It is recommended to name
keys in partialCamelCaseLikeThis.
(Inherited from ParseObject.) | |
Keys |
Gets a set view of the keys contained in this object. This does not include createdAt,
updatedAt, or objectId. It does include things like username and ACL.
(Inherited from ParseObject.) | |
ObjectId |
Gets or sets the object id. An object id is assigned as soon as an object is
saved to the server. The combination of a ClassName and an
ObjectId uniquely identifies an object in your application.
(Inherited from ParseObject.) | |
Password |
Sets the password.
| |
Query |
Constructs a ParseQueryT for ParseUsers.
| |
UpdatedAt |
Gets the last time this object was updated as the server sees it, so that if you make changes
to a ParseObject, then wait a while, and then call SaveAsync, the updated time
will be the time of the SaveAsync call rather than the time the object was
changed locally.
(Inherited from ParseObject.) | |
Username |
Gets or sets the username.
|
See Also