Skip to content

Commit ac570b8

Browse files
Use same notifyOnInitialValue param description as NotifyPropertyChangedEx (#718)
Co-authored-by: Chris Pulman <[email protected]>
1 parent de25ce5 commit ac570b8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/DynamicData/Cache/ObservableCacheEx.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5670,7 +5670,7 @@ public static IObservable<TObject> WatchValue<TObject, TKey>(this IObservable<IC
56705670
/// <typeparam name="TValue">The type of the value.</typeparam>
56715671
/// <param name="source">The source.</param>
56725672
/// <param name="propertyAccessor">The property accessor.</param>
5673-
/// <param name="notifyOnInitialValue">if set to <c>true</c> [notify on initial value].</param>
5673+
/// <param name="notifyOnInitialValue">If true the resulting observable includes the initial value.</param>
56745674
/// <returns>An observable which emits a property when it has changed.</returns>
56755675
public static IObservable<PropertyValue<TObject, TValue>> WhenPropertyChanged<TObject, TKey, TValue>(this IObservable<IChangeSet<TObject, TKey>> source, Expression<Func<TObject, TValue>> propertyAccessor, bool notifyOnInitialValue = true)
56765676
where TObject : INotifyPropertyChanged
@@ -5697,7 +5697,7 @@ public static IObservable<PropertyValue<TObject, TValue>> WhenPropertyChanged<TO
56975697
/// <typeparam name="TValue">The type of the value.</typeparam>
56985698
/// <param name="source">The source.</param>
56995699
/// <param name="propertyAccessor">The property accessor.</param>
5700-
/// <param name="notifyOnInitialValue">if set to <c>true</c> [notify on initial value].</param>
5700+
/// <param name="notifyOnInitialValue">If true the resulting observable includes the initial value.</param>
57015701
/// <returns>An observable which emits a value when it has changed.</returns>
57025702
public static IObservable<TValue?> WhenValueChanged<TObject, TKey, TValue>(this IObservable<IChangeSet<TObject, TKey>> source, Expression<Func<TObject, TValue>> propertyAccessor, bool notifyOnInitialValue = true)
57035703
where TObject : INotifyPropertyChanged

src/DynamicData/List/ObservableListEx.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2260,7 +2260,7 @@ public static IObservable<IVirtualChangeSet<T>> Virtualise<T>(this IObservable<I
22602260
/// <typeparam name="TValue">The type of the value.</typeparam>
22612261
/// <param name="source">The source.</param>
22622262
/// <param name="propertyAccessor">The property accessor.</param>
2263-
/// <param name="notifyOnInitialValue">if set to <c>true</c> [notify on initial value].</param>
2263+
/// <param name="notifyOnInitialValue">If true the resulting observable includes the initial value.</param>
22642264
/// <returns>An observable which emits the property value.</returns>
22652265
public static IObservable<PropertyValue<TObject, TValue>> WhenPropertyChanged<TObject, TValue>(this IObservable<IChangeSet<TObject>> source, Expression<Func<TObject, TValue>> propertyAccessor, bool notifyOnInitialValue = true)
22662266
where TObject : INotifyPropertyChanged
@@ -2286,7 +2286,7 @@ public static IObservable<PropertyValue<TObject, TValue>> WhenPropertyChanged<TO
22862286
/// <typeparam name="TValue">The type of the value.</typeparam>
22872287
/// <param name="source">The source.</param>
22882288
/// <param name="propertyAccessor">The property accessor.</param>
2289-
/// <param name="notifyOnInitialValue">if set to <c>true</c> [notify on initial value].</param>
2289+
/// <param name="notifyOnInitialValue">If true the resulting observable includes the initial value.</param>
22902290
/// <returns>An observable which emits the value.</returns>
22912291
public static IObservable<TValue?> WhenValueChanged<TObject, TValue>(this IObservable<IChangeSet<TObject>> source, Expression<Func<TObject, TValue>> propertyAccessor, bool notifyOnInitialValue = true)
22922292
where TObject : INotifyPropertyChanged

0 commit comments

Comments
 (0)