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
/// <typeparam name="T">The type of items in the list.</typeparam>
1265
+
/// <param name="source">The list stream whose items are to be passed to <paramref name="refreshAction"/>.</param>
1266
+
/// <param name="refreshAction">The action to invoke upon each refreshed item.</param>
1267
+
/// <returns>A list stream, containing all items in <paramref name="source"/>, with changes published after <paramref name="refreshAction"/> has been invoked.</returns>
1268
+
/// <exception cref="ArgumentNullException">Throws for <paramref name="source"/> and <paramref name="refreshAction"/>.</exception>
1269
+
/// <remarks>Note that "refreshed" items refers to items from <see cref="ListChangeReason.Refresh"/> changes.</remarks>
0 commit comments