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
Copy file name to clipboardExpand all lines: src/React.Core/IReactComponent.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
* All rights reserved.
4
4
*
5
5
* This source code is licensed under the BSD-style license found in the
6
-
* LICENSE file in the root directory of this source tree. An additional grant
6
+
* LICENSE file in the root directory of this source tree. An additional grant
7
7
* of patent rights can be found in the PATENTS file in the same directory.
8
8
*/
9
9
@@ -39,13 +39,13 @@ public interface IReactComponent
39
39
/// return the rendered HTML.
40
40
/// </summary>
41
41
/// <param name="renderContainerOnly">Only renders component container. Used for client-side only rendering.</param>
42
-
/// <param name="renderReactAttributes">Indicates if the React data-attributes should be rendered during serverside rendering</param>
42
+
/// <param name="renderServerOnly">Only renders the common HTML mark up and not any React specific dataattributes. Used for server-side only rendering.</param>
Copy file name to clipboardExpand all lines: src/React.Core/ReactComponent.cs
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
* All rights reserved.
4
4
*
5
5
* This source code is licensed under the BSD-style license found in the
6
-
* LICENSE file in the root directory of this source tree. An additional grant
6
+
* LICENSE file in the root directory of this source tree. An additional grant
7
7
* of patent rights can be found in the PATENTS file in the same directory.
8
8
*/
9
9
@@ -79,20 +79,20 @@ public ReactComponent(IReactEnvironment environment, IReactSiteConfiguration con
79
79
/// return the rendered HTML.
80
80
/// </summary>
81
81
/// <param name="renderContainerOnly">Only renders component container. Used for client-side only rendering.</param>
82
-
/// <param name="renderReactAttributes">Indicates if the React data-attributes should be rendered during serverside rendering</param>
82
+
/// <param name="renderServerOnly">Only renders the common HTML mark up and not any React specific dataattributes. Used for server-side only rendering.</param>
0 commit comments