@@ -108,7 +108,7 @@ public static class DependencyObjectExtensions
108
108
/// </summary>
109
109
/// <typeparam name="T">The type of elements to match.</typeparam>
110
110
/// <param name="element">The root element.</param>
111
- /// <param name="predicate">The predicatee to use to match the descendant nodes.</param>
111
+ /// <param name="predicate">The predicate to use to match the descendant nodes.</param>
112
112
/// <returns>The descendant that was found, or <see langword="null"/>.</returns>
113
113
public static T ? FindDescendant < T > ( this DependencyObject element , Func < T , bool > predicate )
114
114
where T : notnull , DependencyObject
@@ -123,7 +123,7 @@ public static class DependencyObjectExtensions
123
123
/// </summary>
124
124
/// <typeparam name="T">The type of elements to match.</typeparam>
125
125
/// <param name="element">The root element.</param>
126
- /// <param name="predicate">The predicatee to use to match the descendant nodes.</param>
126
+ /// <param name="predicate">The predicate to use to match the descendant nodes.</param>
127
127
/// <param name="searchType">The search type to use to explore the visual tree.</param>
128
128
/// <returns>The descendant that was found, or <see langword="null"/>.</returns>
129
129
public static T ? FindDescendant < T > ( this DependencyObject element , Func < T , bool > predicate , SearchType searchType )
@@ -141,7 +141,7 @@ public static class DependencyObjectExtensions
141
141
/// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
142
142
/// <param name="element">The root element.</param>
143
143
/// <param name="state">The state to give as input to <paramref name="predicate"/>.</param>
144
- /// <param name="predicate">The predicatee to use to match the descendant nodes.</param>
144
+ /// <param name="predicate">The predicate to use to match the descendant nodes.</param>
145
145
/// <returns>The descendant that was found, or <see langword="null"/>.</returns>
146
146
public static T ? FindDescendant < T , TState > ( this DependencyObject element , TState state , Func < T , TState , bool > predicate )
147
147
where T : notnull , DependencyObject
@@ -158,7 +158,7 @@ public static class DependencyObjectExtensions
158
158
/// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
159
159
/// <param name="element">The root element.</param>
160
160
/// <param name="state">The state to give as input to <paramref name="predicate"/>.</param>
161
- /// <param name="predicate">The predicatee to use to match the descendant nodes.</param>
161
+ /// <param name="predicate">The predicate to use to match the descendant nodes.</param>
162
162
/// <param name="searchType">The search type to use to explore the visual tree.</param>
163
163
/// <returns>The descendant that was found, or <see langword="null"/>.</returns>
164
164
public static T ? FindDescendant < T , TState > ( this DependencyObject element , TState state , Func < T , TState , bool > predicate , SearchType searchType )
@@ -374,7 +374,7 @@ public static class DependencyObjectExtensions
374
374
/// </summary>
375
375
/// <typeparam name="T">The type of elements to match.</typeparam>
376
376
/// <param name="element">The root element.</param>
377
- /// <param name="predicate">The predicatee to use to match the descendant nodes.</param>
377
+ /// <param name="predicate">The predicate to use to match the descendant nodes.</param>
378
378
/// <returns>The descendant (or self) that was found, or <see langword="null"/>.</returns>
379
379
public static T ? FindDescendantOrSelf < T > ( this DependencyObject element , Func < T , bool > predicate )
380
380
where T : notnull , DependencyObject
@@ -392,7 +392,7 @@ public static class DependencyObjectExtensions
392
392
/// </summary>
393
393
/// <typeparam name="T">The type of elements to match.</typeparam>
394
394
/// <param name="element">The root element.</param>
395
- /// <param name="predicate">The predicatee to use to match the descendant nodes.</param>
395
+ /// <param name="predicate">The predicate to use to match the descendant nodes.</param>
396
396
/// <param name="searchType">The search type to use to explore the visual tree.</param>
397
397
/// <returns>The descendant (or self) that was found, or <see langword="null"/>.</returns>
398
398
public static T ? FindDescendantOrSelf < T > ( this DependencyObject element , Func < T , bool > predicate , SearchType searchType )
@@ -413,7 +413,7 @@ public static class DependencyObjectExtensions
413
413
/// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
414
414
/// <param name="element">The root element.</param>
415
415
/// <param name="state">The state to give as input to <paramref name="predicate"/>.</param>
416
- /// <param name="predicate">The predicatee to use to match the descendant nodes.</param>
416
+ /// <param name="predicate">The predicate to use to match the descendant nodes.</param>
417
417
/// <returns>The descendant (or self) that was found, or <see langword="null"/>.</returns>
418
418
public static T ? FindDescendantOrSelf < T , TState > ( this DependencyObject element , TState state , Func < T , TState , bool > predicate )
419
419
where T : notnull , DependencyObject
@@ -433,7 +433,7 @@ public static class DependencyObjectExtensions
433
433
/// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
434
434
/// <param name="element">The root element.</param>
435
435
/// <param name="state">The state to give as input to <paramref name="predicate"/>.</param>
436
- /// <param name="predicate">The predicatee to use to match the descendant nodes.</param>
436
+ /// <param name="predicate">The predicate to use to match the descendant nodes.</param>
437
437
/// <param name="searchType">The search type to use to explore the visual tree.</param>
438
438
/// <returns>The descendant (or self) that was found, or <see langword="null"/>.</returns>
439
439
public static T ? FindDescendantOrSelf < T , TState > ( this DependencyObject element , TState state , Func < T , TState , bool > predicate , SearchType searchType )
@@ -727,7 +727,7 @@ static IEnumerable<DependencyObject> ThrowArgumentOutOfRangeExceptionForInvalidS
727
727
/// </summary>
728
728
/// <typeparam name="T">The type of elements to match.</typeparam>
729
729
/// <param name="element">The starting element.</param>
730
- /// <param name="predicate">The predicatee to use to match the ascendant nodes.</param>
730
+ /// <param name="predicate">The predicate to use to match the ascendant nodes.</param>
731
731
/// <returns>The ascendant that was found, or <see langword="null"/>.</returns>
732
732
public static T ? FindAscendant < T > ( this DependencyObject element , Func < T , bool > predicate )
733
733
where T : notnull , DependencyObject
@@ -744,7 +744,7 @@ static IEnumerable<DependencyObject> ThrowArgumentOutOfRangeExceptionForInvalidS
744
744
/// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
745
745
/// <param name="element">The starting element.</param>
746
746
/// <param name="state">The state to give as input to <paramref name="predicate"/>.</param>
747
- /// <param name="predicate">The predicatee to use to match the ascendant nodes.</param>
747
+ /// <param name="predicate">The predicate to use to match the ascendant nodes.</param>
748
748
/// <returns>The ascendant that was found, or <see langword="null"/>.</returns>
749
749
public static T ? FindAscendant < T , TState > ( this DependencyObject element , TState state , Func < T , TState , bool > predicate )
750
750
where T : notnull , DependencyObject
@@ -760,7 +760,7 @@ static IEnumerable<DependencyObject> ThrowArgumentOutOfRangeExceptionForInvalidS
760
760
/// <typeparam name="T">The type of elements to match.</typeparam>
761
761
/// <typeparam name="TPredicate">The type of predicate in use.</typeparam>
762
762
/// <param name="element">The starting element.</param>
763
- /// <param name="predicate">The predicatee to use to match the ascendant nodes.</param>
763
+ /// <param name="predicate">The predicate to use to match the ascendant nodes.</param>
764
764
/// <returns>The ascendant that was found, or <see langword="null"/>.</returns>
765
765
private static T ? FindAscendant < T , TPredicate > ( this DependencyObject element , ref TPredicate predicate )
766
766
where T : notnull , DependencyObject
@@ -839,7 +839,7 @@ static IEnumerable<DependencyObject> ThrowArgumentOutOfRangeExceptionForInvalidS
839
839
/// </summary>
840
840
/// <typeparam name="T">The type of elements to match.</typeparam>
841
841
/// <param name="element">The starting element.</param>
842
- /// <param name="predicate">The predicatee to use to match the ascendant nodes.</param>
842
+ /// <param name="predicate">The predicate to use to match the ascendant nodes.</param>
843
843
/// <returns>The ascendant (or self) that was found, or <see langword="null"/>.</returns>
844
844
public static T ? FindAscendantOrSelf < T > ( this DependencyObject element , Func < T , bool > predicate )
845
845
where T : notnull , DependencyObject
@@ -859,7 +859,7 @@ static IEnumerable<DependencyObject> ThrowArgumentOutOfRangeExceptionForInvalidS
859
859
/// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
860
860
/// <param name="element">The starting element.</param>
861
861
/// <param name="state">The state to give as input to <paramref name="predicate"/>.</param>
862
- /// <param name="predicate">The predicatee to use to match the ascendant nodes.</param>
862
+ /// <param name="predicate">The predicate to use to match the ascendant nodes.</param>
863
863
/// <returns>The ascendant (or self) that was found, or <see langword="null"/>.</returns>
864
864
public static T ? FindAscendantOrSelf < T , TState > ( this DependencyObject element , TState state , Func < T , TState , bool > predicate )
865
865
where T : notnull , DependencyObject
0 commit comments