We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
InitialSyncCompleted
1 parent 507a20d commit ed1d83bCopy full SHA for ed1d83b
CSync/Lib/SyncedConfig.cs
@@ -1,3 +1,4 @@
1
+using System;
2
using System.Linq;
3
using System.Reflection;
4
using System.Runtime.Serialization;
@@ -38,4 +39,7 @@ internal void PopulateEntryContainer()
38
39
EntryContainer.Add(entryBase.BoxedEntry.ToSyncedEntryIdentifier(), entryBase);
40
}
41
42
+
43
+ public event EventHandler? InitialSyncCompleted;
44
+ internal void OnInitialSyncCompleted(object sender, EventArgs e) => InitialSyncCompleted?.Invoke(sender, e);
45
0 commit comments