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
Revert to original behaviour of unsorted bound list in Bind() operator which uses remove / add instead of replace + add an option to use replace. Fixes#641. Fixes#640. Reverts #381 (#642)
/// <param name="refreshThreshold">The number of changes before a reset notification is triggered.</param>
589
+
/// <param name="useReplaceForUpdates"> Use replace instead of remove / add for updates. NB: Some platforms to not support replace notifications for binding.</param>
588
590
/// <returns>An observable which will emit change sets.</returns>
/// <typeparam name="TKey">The type of the key.</typeparam>
746
748
/// <param name="source">The source.</param>
747
749
/// <param name="readOnlyObservableCollection">The resulting read only observable collection.</param>
748
-
/// <param name="resetThreshold">The number of changes before a reset event is called on the observable collection.</param>
750
+
/// <param name="resetThreshold">The number of changes before a reset notification is triggered.</param>
751
+
/// <param name="useReplaceForUpdates"> Use replace instead of remove / add for updates. NB: Some platforms to not support replace notifications for binding.</param>
749
752
/// <param name="adaptor">Specify an adaptor to change the algorithm to update the target collection.</param>
750
753
/// <returns>An observable which will emit change sets.</returns>
0 commit comments