You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/coredata.cs
+54Lines changed: 54 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,16 @@ public enum NSPersistentStoreUbiquitousTransitionType : nuint_compat_int {
22
22
InitialImportCompleted
23
23
}
24
24
25
+
[Native]
26
+
publicenumNSSnapshotEventType:nuint_compat_int{
27
+
UndoInsertion=1<<1,
28
+
UndoDeletion=1<<2,
29
+
UndoUpdate=1<<3,
30
+
Rollback=1<<4,
31
+
Refresh=1<<5,
32
+
MergePolicy=1<<6
33
+
}
34
+
25
35
[BaseType(typeof(NSPersistentStore))]
26
36
// Objective-C exception thrown. Name: NSInternalInconsistencyException Reason: NSMappedObjectStore must be initialized with initWithPersistentStoreCoordinator:configurationName:URL:options
0 commit comments