Exemplo n.º 1
0
 internal abstract RealmCollectionBase <T> CreateCollection(Realm realm, CollectionHandleBase handle);
Exemplo n.º 2
0
 internal override RealmCollectionBase <T> CreateCollection(Realm realm, CollectionHandleBase handle) => new RealmSet <T>(realm, (SetHandle)handle, Metadata);
Exemplo n.º 3
0
 public static extern bool is_superset_of(SetHandle handle, CollectionHandleBase other_handle, [MarshalAs(UnmanagedType.I1)] bool proper, out NativeException ex);
Exemplo n.º 4
0
 public static extern bool overlaps(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
Exemplo n.º 5
0
 public static extern void symmetric_except_with(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
Exemplo n.º 6
0
 public static extern void union_with(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
Exemplo n.º 7
0
 public static extern bool set_equals(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
Exemplo n.º 8
0
 internal NotificationTokenHandle(CollectionHandleBase root) : base(root)
 {
 }
Exemplo n.º 9
0
 internal override RealmCollectionBase <KeyValuePair <string, TValue> > CreateCollection(Realm realm, CollectionHandleBase handle) => new RealmDictionary <TValue>(realm, (DictionaryHandle)handle, Metadata);
Exemplo n.º 10
0
 internal NotificationTokenHandle(CollectionHandleBase root) : base(root.Root ?? root)
 {
     // We save this because RealmHandle doesn't support a parent chain like
     // NotificationToken -> List -> Realm
     _collectionHandle = root;
 }
 internal NotificationTokenHandle(CollectionHandleBase root) : base(root.Root ?? root)
 {
     // We save this because RealmHandle doesn't support a parent chain like
     // NotificationToken -> List -> Realm
     _collectionHandle = root;
 }