Class UserInfo
An object containing information about a user's identity in Realm's authentication system.
Namespace: Realms.Sync
Assembly: Realm.Sync.dll
Syntax
public class UserInfo : object
Properties
| Improve this Doc View SourceAccounts
Gets a collection of all the user accounts associated with the user.
Declaration
public IEnumerable<AccountInfo> Accounts { get; }
Property Value
Type | Description |
---|---|
IEnumerable<AccountInfo> |
Identity
Gets the identity of the user in Realm's system. Equivalent to Identity.
Declaration
public string Identity { get; }
Property Value
Type | Description |
---|---|
String |
IsAdmin
Gets a value indicating whether the user is a Realm Object Server administrator user. Equivalent to IsAdmin.
Declaration
public bool IsAdmin { get; }
Property Value
Type | Description |
---|---|
Boolean |
Metadata
Gets the metadata about this user stored on the Realm Object Server.
Declaration
public IDictionary<string, string> Metadata { get; }
Property Value
Type | Description |
---|---|
IDictionary<String, String> |