From ac570b8b9ce5d7e48ee96f6436a467e033355773 Mon Sep 17 00:00:00 2001 From: Kevin Gallahan Date: Wed, 20 Sep 2023 20:48:59 -0400 Subject: [PATCH] Use same notifyOnInitialValue param description as NotifyPropertyChangedEx (#718) Co-authored-by: Chris Pulman --- src/DynamicData/Cache/ObservableCacheEx.cs | 4 ++-- src/DynamicData/List/ObservableListEx.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/DynamicData/Cache/ObservableCacheEx.cs b/src/DynamicData/Cache/ObservableCacheEx.cs index f3aab6735..b4a9ff1bd 100644 --- a/src/DynamicData/Cache/ObservableCacheEx.cs +++ b/src/DynamicData/Cache/ObservableCacheEx.cs @@ -5670,7 +5670,7 @@ public static IObservable WatchValue(this IObservableThe type of the value. /// The source. /// The property accessor. - /// if set to true [notify on initial value]. + /// If true the resulting observable includes the initial value. /// An observable which emits a property when it has changed. public static IObservable> WhenPropertyChanged(this IObservable> source, Expression> propertyAccessor, bool notifyOnInitialValue = true) where TObject : INotifyPropertyChanged @@ -5697,7 +5697,7 @@ public static IObservable> WhenPropertyChangedThe type of the value. /// The source. /// The property accessor. - /// if set to true [notify on initial value]. + /// If true the resulting observable includes the initial value. /// An observable which emits a value when it has changed. public static IObservable WhenValueChanged(this IObservable> source, Expression> propertyAccessor, bool notifyOnInitialValue = true) where TObject : INotifyPropertyChanged diff --git a/src/DynamicData/List/ObservableListEx.cs b/src/DynamicData/List/ObservableListEx.cs index 82f03fa0f..67520adae 100644 --- a/src/DynamicData/List/ObservableListEx.cs +++ b/src/DynamicData/List/ObservableListEx.cs @@ -2260,7 +2260,7 @@ public static IObservable> Virtualise(this IObservableThe type of the value. /// The source. /// The property accessor. - /// if set to true [notify on initial value]. + /// If true the resulting observable includes the initial value. /// An observable which emits the property value. public static IObservable> WhenPropertyChanged(this IObservable> source, Expression> propertyAccessor, bool notifyOnInitialValue = true) where TObject : INotifyPropertyChanged @@ -2286,7 +2286,7 @@ public static IObservable> WhenPropertyChangedThe type of the value. /// The source. /// The property accessor. - /// if set to true [notify on initial value]. + /// If true the resulting observable includes the initial value. /// An observable which emits the value. public static IObservable WhenValueChanged(this IObservable> source, Expression> propertyAccessor, bool notifyOnInitialValue = true) where TObject : INotifyPropertyChanged