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
+8-5
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,16 @@
1
-
/*
1
+
/*
2
2
* Copyright (c) 2014-Present, Facebook, Inc.
3
3
* All rights reserved.
4
4
*
5
5
* This source code is licensed under the BSD-style license found in the
6
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
+
10
+
usingSystem;
9
11
10
12
namespaceReact
11
-
{
13
+
{
12
14
/// <summary>
13
15
/// Represents a React JavaScript component.
14
16
/// </summary>
@@ -44,9 +46,10 @@ public interface IReactComponent
44
46
/// return the rendered HTML.
45
47
/// </summary>
46
48
/// <param name="renderContainerOnly">Only renders component container. Used for client-side only rendering.</param>
47
-
/// <param name="renderServerOnly">Only renders the common HTML mark up and not any React specific data attributes. Used for server-side only rendering.</param>
49
+
/// <param name="renderServerOnly">Only renders the common HTML mark up and not any React specific data attributes. Used for server-side only rendering.</param>
Copy file name to clipboardExpand all lines: src/React.Core/ReactComponent.cs
+11-13
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@
5
5
* This source code is licensed under the BSD-style license found in the
6
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
-
*/
9
-
8
+
*/
9
+
10
10
usingSystem;
11
11
usingSystem.Linq;
12
12
usingSystem.Text.RegularExpressions;
@@ -15,7 +15,7 @@
15
15
usingReact.Exceptions;
16
16
17
17
namespaceReact
18
-
{
18
+
{
19
19
/// <summary>
20
20
/// Represents a React JavaScript component.
21
21
/// </summary>
@@ -106,9 +106,10 @@ public ReactComponent(IReactEnvironment environment, IReactSiteConfiguration con
106
106
/// return the rendered HTML.
107
107
/// </summary>
108
108
/// <param name="renderContainerOnly">Only renders component container. Used for client-side only rendering.</param>
109
-
/// <param name="renderServerOnly">Only renders the common HTML mark up and not any React specific data attributes. Used for server-side only rendering.</param>
109
+
/// <param name="renderServerOnly">Only renders the common HTML mark up and not any React specific data attributes. Used for server-side only rendering.</param>
0 commit comments