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
/// <param name="name">A name for the cascading value. If set, <see cref="CascadingParameterAttribute"/> can be configured to match based on this name.</param>
33
-
/// <param name="initialValueFactory">A callback that supplies a fixed value within each service provider scope.</param>
32
+
/// <param name="valueFactory">A callback that supplies a fixed value within each service provider scope.</param>
/// <param name="name">A name for the cascading value. If set, <see cref="CascadingParameterAttribute"/> can be configured to match based on this name.</param>
80
-
/// <param name="valueFactory">A callback that supplies a fixed value within each service provider scope.</param>
/// Constructs an instance of <see cref="CascadingValueSource{TValue}"/>.
50
50
/// </summary>
51
-
/// <param name="initialValueFactory">A callback that produces the initial value when first required.</param>
51
+
/// <param name="valueFactory">A callback that produces the initial value when first required.</param>
52
52
/// <param name="isFixed">A flag to indicate whether the value is fixed. If false, all receipients will subscribe for update notifications, which you can issue by calling <see cref="NotifyChangedAsync()"/>. These subscriptions come at a performance cost, so if the value will not change, set <paramref name="isFixed"/> to true.</param>
/// Constructs an instance of <see cref="CascadingValueSource{TValue}"/>.
60
60
/// </summary>
61
61
/// <param name="name">A name for the cascading value. If set, <see cref="CascadingParameterAttribute"/> can be configured to match based on this name.</param>
62
-
/// <param name="initialValueFactory">A callback that produces the initial value when first required.</param>
62
+
/// <param name="valueFactory">A callback that produces the initial value when first required.</param>
63
63
/// <param name="isFixed">A flag to indicate whether the value is fixed. If false, all receipients will subscribe for update notifications, which you can issue by calling <see cref="NotifyChangedAsync()"/>. These subscriptions come at a performance cost, so if the value will not change, set <paramref name="isFixed"/> to true.</param>
0 commit comments