Enum RealmValueType
Represents the type of a value stored in a RealmValue property.
Namespace: Realms
Assembly: Realm.dll
Syntax
public enum RealmValueType : byte
Fields
| Name | Description |
|---|---|
| Null | The value is |
| Int | The value is a long. |
| Bool | The value represents a bool. |
| String | The value represents a non-null string. |
| Data | The value represents a non-null byte array. |
| Date | The value represents a DateTimeOffset. |
| Float | The value represents a float. |
| Double | The value represents a double. |
| Decimal128 | The value represents a MongoDB.Bson.Decimal128. |
| ObjectId | The value represents a MongoDB.Bson.ObjectId. |
| Object | The value represents a link to another object. |
| Guid | The value represents a Guid. |
| List | The value represents a IList<T>. |
| Set | The value represents a ISet<T>. |
| Dictionary | The value represents a IDictionary<TKey, TValue>. |