Class SyncConfiguration
A SyncConfiguration is used to setup a Realm that can be synchronized between devices using the Realm Object Server. A valid User is required to create a SyncConfiguration.
Inherited Members
Namespace:Realms.Sync
Assembly:Realm.Sync.dll
Syntax
public class SyncConfiguration : RealmConfigurationBase
Constructors
| Improve this Doc View SourceSyncConfiguration(User, Uri, String)
Initializes a new instance of the SyncConfiguration class.
Declaration
public SyncConfiguration(User user, Uri serverUri, string optionalPath = null)
Parameters
| Type | Name | Description |
|---|---|---|
| User | user | A valid User. |
| Uri | serverUri | A unique Uri that identifies the Realm. In URIs, |
| String | optionalPath | Path to the realm, must be a valid full path for the current platform, relative subdirectory, or just filename. |
Properties
| Improve this Doc View SourceEnableSSLValidation
Gets or sets a value indicating whether SSL certificate validation is enabled for the connection associated with this configuration value.
Declaration
public bool EnableSSLValidation { get; set; }
Property Value
| Type | Description |
|---|---|
| Boolean |
|
ServerUri
Gets the Uri used to create this SyncConfiguration.
Declaration
public Uri ServerUri { get; }
Property Value
| Type | Description |
|---|---|
| Uri | The Uri where the Realm Object Server is hosted. |
User
Gets the User used to create this SyncConfiguration.
Declaration
public User User { get; }
Property Value
| Type | Description |
|---|---|
| User |