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
* RazorComponentResult: change namespace, make executor internal, merge test classes
* RazorComponentResult: Nullability and trim annotations
* RazorComponentResult: IStatusCodeHttpResult and IContentTypeHttpResult
* Cleanup
* Further clean up annotations
* Remove HtmlRootComponent.ComponentId as per API review
* Rename SupplyParameterFromFormAttribute.Handler to FormName
* API review: seal
* Clarify RenderModeAttribute inheritance. Fixes#49848
* Rename valueFactory -> initialValueFactory
* Remove unnecessary sequence params
* Make [StreamRendering] default to true
/// <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="valueFactory">A callback that supplies a fixed value within each service provider scope.</param>
33
+
/// <param name="initialValueFactory">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="valueFactory">A callback that produces the initial value when first required.</param>
51
+
/// <param name="initialValueFactory">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="valueFactory">A callback that produces the initial value when first required.</param>
62
+
/// <param name="initialValueFactory">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>
Copy file name to clipboardExpand all lines: src/Components/Components/src/StreamRenderingAttribute.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,8 @@ public class StreamRenderingAttribute : Attribute
18
18
/// <summary>
19
19
/// Constructs an instance of <see cref="StreamRenderingAttribute"/>
20
20
/// </summary>
21
-
/// <param name="enabled">A flag to indicate whether this component and its descendants should stream their rendering.</param>
22
-
publicStreamRenderingAttribute(boolenabled)
21
+
/// <param name="enabled">A flag to indicate whether this component and its descendants should stream their rendering. The default value is true.</param>
0 commit comments