Class SyncConfigurationBase
A SyncConfigurationBase is used to setup a Realm that can be synchronized between devices using MongoDB Realm. There are two synchronization modes with their respective configurations - "partition" sync with PartitionSyncConfiguration allows you to split your data in separarate partitions and synchronize an entire partition with an entire Realm; "flexible" sync with FlexibleSyncConfiguration allows you to start with an empty Realm and send the server a set of queries which it will run and populate the Realm with all documents matching them.
Inheritance
SyncConfigurationBase
Inherited Members
Namespace: Realms.Sync
Assembly: Realm.dll
Syntax
public abstract class SyncConfigurationBase : RealmConfigurationBase
Constructors
| Improve this Doc View SourceSyncConfigurationBase(User)
Initializes a new instance of the SyncConfigurationBase class.
Declaration
protected SyncConfigurationBase(User user)
Parameters
Type | Name | Description |
---|---|---|
User | user | A valid User. |
Properties
| Improve this Doc View SourceUser
Gets the User used to create this SyncConfigurationBase.
Declaration
public User User { get; }
Property Value
Type | Description |
---|---|
User |