Enum AccessLevel
Access levels which can be granted to Realm Mobile Platform users for specific synchronized Realms, using the permissions APIs.
Note that each access level guarantees all allowed actions provided by less permissive access levels.
Specifically, users with write access to a Realm can always read from that Realm, and users with administrative
access can always read or write from the Realm.
Namespace:Realms.Sync
Assembly:Realm.Sync.dll
Syntax
public enum AccessLevel
Fields
Name | Description |
---|---|
Admin | User can read, write, and administer the Realm, including granting permissions to other users. |
None | No access whatsoever. |
Read | User can only read the contents of the Realm. |
Write | User can read and write the contents of the Realm. |