Skip to content

Commit eb67337

Browse files
authored
Un-encode characters in xref links (System.R* and SystemLinq) (#12464)
1 parent 21ce812 commit eb67337

398 files changed

Lines changed: 7232 additions & 7232 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

xml/System.Linq.Expressions/BinaryExpression.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<format type="text/markdown"><![CDATA[
122122
123123
## Remarks
124-
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>.
124+
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>.
125125
126126
]]></format>
127127
</remarks>
@@ -331,7 +331,7 @@
331331
<format type="text/markdown"><![CDATA[
332332
333333
## Remarks
334-
An operator call is lifted if the operator expects non-nullable operands but nullable operands are passed to it. If the value of <xref:System.Linq.Expressions.BinaryExpression.IsLiftedToNull%2A> is `true`, the operator returns a nullable type, and if a nullable operand evaluates to `null`, the operator returns `null`.
334+
An operator call is lifted if the operator expects non-nullable operands but nullable operands are passed to it. If the value of <xref:System.Linq.Expressions.BinaryExpression.IsLiftedToNull*> is `true`, the operator returns a nullable type, and if a nullable operand evaluates to `null`, the operator returns `null`.
335335
336336
]]></format>
337337
</remarks>

xml/System.Linq.Expressions/BlockExpression.xml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@
5858
<Docs>
5959
<summary>Represents a block that contains a sequence of expressions where variables can be defined.</summary>
6060
<remarks>
61-
<format type="text/markdown"><![CDATA[
62-
63-
## Remarks
64-
The <xref:System.Linq.Expressions.Expression.Block%2A> methods can be used to create a <xref:System.Linq.Expressions.BlockExpression>.
65-
66-
67-
68-
## Examples
69-
The following code example shows how to create a block expression. The block expression consists of two <xref:System.Linq.Expressions.MethodCallExpression> objects and one <xref:System.Linq.Expressions.ConstantExpression> object.
70-
61+
<format type="text/markdown"><![CDATA[
62+
63+
## Remarks
64+
The <xref:System.Linq.Expressions.Expression.Block*> methods can be used to create a <xref:System.Linq.Expressions.BlockExpression>.
65+
66+
67+
68+
## Examples
69+
The following code example shows how to create a block expression. The block expression consists of two <xref:System.Linq.Expressions.MethodCallExpression> objects and one <xref:System.Linq.Expressions.ConstantExpression> object.
70+
7171
:::code language="csharp" source="~/snippets/csharp/System.Linq.Expressions/BlockExpression/Overview/program.cs" id="Snippet13":::
72-
:::code language="vb" source="~/snippets/visualbasic/System.Linq.Expressions/BlockExpression/Overview/module1.vb" id="Snippet13":::
73-
72+
:::code language="vb" source="~/snippets/visualbasic/System.Linq.Expressions/BlockExpression/Overview/module1.vb" id="Snippet13":::
73+
7474
]]></format>
7575
</remarks>
7676
</Docs>
@@ -120,11 +120,11 @@
120120
<summary>Dispatches to the specific visit method for this node type. For example, <see cref="T:System.Linq.Expressions.MethodCallExpression" /> calls the <see cref="M:System.Linq.Expressions.ExpressionVisitor.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)" />.</summary>
121121
<returns>The result of visiting this node.</returns>
122122
<remarks>
123-
<format type="text/markdown"><![CDATA[
124-
125-
## Remarks
126-
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>.
127-
123+
<format type="text/markdown"><![CDATA[
124+
125+
## Remarks
126+
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>.
127+
128128
]]></format>
129129
</remarks>
130130
</Docs>

xml/System.Linq.Expressions/CatchBlock.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@
5858
<Docs>
5959
<summary>Represents a catch statement in a try block.</summary>
6060
<remarks>
61-
<format type="text/markdown"><![CDATA[
62-
63-
## Remarks
64-
The <xref:System.Linq.Expressions.Expression.Catch%2A> methods can be used to create a <xref:System.Linq.Expressions.CatchBlock>.
65-
61+
<format type="text/markdown"><![CDATA[
62+
63+
## Remarks
64+
The <xref:System.Linq.Expressions.Expression.Catch*> methods can be used to create a <xref:System.Linq.Expressions.CatchBlock>.
65+
6666
]]></format>
6767
</remarks>
6868
</Docs>

xml/System.Linq.Expressions/ConditionalExpression.xml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,21 @@
6363
<Docs>
6464
<summary>Represents an expression that has a conditional operator.</summary>
6565
<remarks>
66-
<format type="text/markdown"><![CDATA[
67-
68-
## Remarks
69-
Use the <xref:System.Linq.Expressions.Expression.Condition%2A> factory method to create a <xref:System.Linq.Expressions.ConditionalExpression>.
70-
71-
The <xref:System.Linq.Expressions.Expression.NodeType%2A> of a <xref:System.Linq.Expressions.ConditionalExpression> is <xref:System.Linq.Expressions.ExpressionType.Conditional>.
72-
73-
74-
75-
## Examples
76-
The following code example shows how to create an expression that represents a conditional statement. If the first argument evaluates to `true`, the second argument is executed; otherwise, the third argument is executed.
77-
66+
<format type="text/markdown"><![CDATA[
67+
68+
## Remarks
69+
Use the <xref:System.Linq.Expressions.Expression.Condition*> factory method to create a <xref:System.Linq.Expressions.ConditionalExpression>.
70+
71+
The <xref:System.Linq.Expressions.Expression.NodeType*> of a <xref:System.Linq.Expressions.ConditionalExpression> is <xref:System.Linq.Expressions.ExpressionType.Conditional>.
72+
73+
74+
75+
## Examples
76+
The following code example shows how to create an expression that represents a conditional statement. If the first argument evaluates to `true`, the second argument is executed; otherwise, the third argument is executed.
77+
7878
:::code language="csharp" source="~/snippets/csharp/System.Linq.Expressions/BlockExpression/Overview/program.cs" id="Snippet3":::
79-
:::code language="vb" source="~/snippets/visualbasic/System.Linq.Expressions/BlockExpression/Overview/module1.vb" id="Snippet3":::
80-
79+
:::code language="vb" source="~/snippets/visualbasic/System.Linq.Expressions/BlockExpression/Overview/module1.vb" id="Snippet3":::
80+
8181
]]></format>
8282
</remarks>
8383
</Docs>
@@ -127,11 +127,11 @@
127127
<summary>Dispatches to the specific visit method for this node type. For example, <see cref="T:System.Linq.Expressions.MethodCallExpression" /> calls the <see cref="M:System.Linq.Expressions.ExpressionVisitor.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)" />.</summary>
128128
<returns>The result of visiting this node.</returns>
129129
<remarks>
130-
<format type="text/markdown"><![CDATA[
131-
132-
## Remarks
133-
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>.
134-
130+
<format type="text/markdown"><![CDATA[
131+
132+
## Remarks
133+
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>.
134+
135135
]]></format>
136136
</remarks>
137137
</Docs>

xml/System.Linq.Expressions/ConstantExpression.xml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,21 @@
6363
<Docs>
6464
<summary>Represents an expression that has a constant value.</summary>
6565
<remarks>
66-
<format type="text/markdown"><![CDATA[
67-
68-
## Remarks
69-
Use the <xref:System.Linq.Expressions.Expression.Constant%2A> factory methods to create a <xref:System.Linq.Expressions.ConstantExpression>.
70-
71-
The <xref:System.Linq.Expressions.Expression.NodeType%2A> of a <xref:System.Linq.Expressions.ConstantExpression> is <xref:System.Linq.Expressions.ExpressionType.Constant>.
72-
73-
74-
75-
## Examples
76-
The following code example shows how to create an expression that represents a constant value by using the <xref:System.Linq.Expressions.Expression.Constant%2A> method.
77-
66+
<format type="text/markdown"><![CDATA[
67+
68+
## Remarks
69+
Use the <xref:System.Linq.Expressions.Expression.Constant*> factory methods to create a <xref:System.Linq.Expressions.ConstantExpression>.
70+
71+
The <xref:System.Linq.Expressions.Expression.NodeType*> of a <xref:System.Linq.Expressions.ConstantExpression> is <xref:System.Linq.Expressions.ExpressionType.Constant>.
72+
73+
74+
75+
## Examples
76+
The following code example shows how to create an expression that represents a constant value by using the <xref:System.Linq.Expressions.Expression.Constant*> method.
77+
7878
:::code language="csharp" source="~/snippets/csharp/System.Linq.Expressions/BlockExpression/Overview/program.cs" id="Snippet4":::
79-
:::code language="vb" source="~/snippets/visualbasic/System.Linq.Expressions/BlockExpression/Overview/module1.vb" id="Snippet4":::
80-
79+
:::code language="vb" source="~/snippets/visualbasic/System.Linq.Expressions/BlockExpression/Overview/module1.vb" id="Snippet4":::
80+
8181
]]></format>
8282
</remarks>
8383
</Docs>
@@ -127,11 +127,11 @@
127127
<summary>Dispatches to the specific visit method for this node type. For example, <see cref="T:System.Linq.Expressions.MethodCallExpression" /> calls the <see cref="M:System.Linq.Expressions.ExpressionVisitor.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)" />.</summary>
128128
<returns>The result of visiting this node.</returns>
129129
<remarks>
130-
<format type="text/markdown"><![CDATA[
131-
132-
## Remarks
133-
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>.
134-
130+
<format type="text/markdown"><![CDATA[
131+
132+
## Remarks
133+
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>.
134+
135135
]]></format>
136136
</remarks>
137137
</Docs>

xml/System.Linq.Expressions/DebugInfoExpression.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@
105105
<summary>Dispatches to the specific visit method for this node type. For example, <see cref="T:System.Linq.Expressions.MethodCallExpression" /> calls the <see cref="M:System.Linq.Expressions.ExpressionVisitor.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)" />.</summary>
106106
<returns>The result of visiting this node.</returns>
107107
<remarks>
108-
<format type="text/markdown"><![CDATA[
109-
110-
## Remarks
111-
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>.
112-
108+
<format type="text/markdown"><![CDATA[
109+
110+
## Remarks
111+
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>.
112+
113113
]]></format>
114114
</remarks>
115115
</Docs>

xml/System.Linq.Expressions/DefaultExpression.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@
5858
<Docs>
5959
<summary>Represents the default value of a type or an empty expression.</summary>
6060
<remarks>
61-
<format type="text/markdown"><![CDATA[
62-
63-
## Examples
64-
The following code example shows how to create an expression that represents a default value for a given type by using the <xref:System.Linq.Expressions.Expression.Default%2A> method.
65-
61+
<format type="text/markdown"><![CDATA[
62+
63+
## Examples
64+
The following code example shows how to create an expression that represents a default value for a given type by using the <xref:System.Linq.Expressions.Expression.Default*> method.
65+
6666
:::code language="csharp" source="~/snippets/csharp/System.Linq.Expressions/BlockExpression/Overview/program.cs" id="Snippet6":::
67-
:::code language="vb" source="~/snippets/visualbasic/System.Linq.Expressions/BlockExpression/Overview/module1.vb" id="Snippet6":::
68-
67+
:::code language="vb" source="~/snippets/visualbasic/System.Linq.Expressions/BlockExpression/Overview/module1.vb" id="Snippet6":::
68+
6969
]]></format>
7070
</remarks>
7171
</Docs>

xml/System.Linq.Expressions/DynamicExpression.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
<format type="text/markdown"><![CDATA[
138138
139139
## Remarks
140-
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension%2A>.
140+
This default implementation for <xref:System.Linq.Expressions.ExpressionType.Extension> nodes calls <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>. Override this method to call into a more specific method on a derived visitor class of the <xref:System.Linq.Expressions.ExpressionVisitor> class. However, it should still support unknown visitors by calling <xref:System.Linq.Expressions.ExpressionVisitor.VisitExtension*>.
141141
142142
]]></format>
143143
</remarks>

0 commit comments

Comments
 (0)