Skip to content

Commit 2038e9e

Browse files
authored
Un-encode characters in xref links (System.D*) (#12462)
1 parent b0e445e commit 2038e9e

548 files changed

Lines changed: 13270 additions & 13270 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.Data.Common.CommandTrees/DbBinaryExpression.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<format type="text/markdown"><![CDATA[
4949
5050
## Remarks
51-
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Left> property is set. For example, <xref:System.Data.Common.CommandTrees.DbUnionAllExpression> requires that its left expression has a collection result type, while <xref:System.Data.Common.CommandTrees.DbAndExpression> requires a Boolean result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Left%2A> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.
51+
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Left> property is set. For example, <xref:System.Data.Common.CommandTrees.DbUnionAllExpression> requires that its left expression has a collection result type, while <xref:System.Data.Common.CommandTrees.DbAndExpression> requires a Boolean result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Left*> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.
5252
5353
]]></format>
5454
</remarks>
@@ -87,7 +87,7 @@
8787
<format type="text/markdown"><![CDATA[
8888
8989
## Remarks
90-
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Right> property is set. For example, <xref:System.Data.Common.CommandTrees.DbUnionAllExpression> requires that its right expression has a collection result type, while <xref:System.Data.Common.CommandTrees.DbAndExpression> requires a Boolean result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Right%2A> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.
90+
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Right> property is set. For example, <xref:System.Data.Common.CommandTrees.DbUnionAllExpression> requires that its right expression has a collection result type, while <xref:System.Data.Common.CommandTrees.DbAndExpression> requires a Boolean result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Right*> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.
9191
9292
]]></format>
9393
</remarks>

xml/System.Data.Common.CommandTrees/DbExpressionVisitor`1.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
<typeparam name="TResultType">The type of the result produced by the visitor.</typeparam>
2222
<summary>Defines the basic functionality that should be implemented by visitors that return a result value of a specific type.</summary>
2323
<remarks>
24-
<format type="text/markdown"><![CDATA[
25-
26-
## Remarks
27-
The <xref:System.Data.Common.CommandTrees.DbExpressionVisitor%601> is an abstract class that describes expression traversal.
28-
24+
<format type="text/markdown"><![CDATA[
25+
26+
## Remarks
27+
The <xref:System.Data.Common.CommandTrees.DbExpressionVisitor`1> is an abstract class that describes expression traversal.
28+
2929
]]></format>
3030
</remarks>
3131
</Docs>
@@ -425,11 +425,11 @@
425425
<summary>When overridden in a derived class, handles any expression of an unrecognized type.</summary>
426426
<returns>A result value of a specific type.</returns>
427427
<remarks>
428-
<format type="text/markdown"><![CDATA[
429-
430-
## Remarks
431-
This method is called when an expression of an otherwise unrecognized type is encountered.
432-
428+
<format type="text/markdown"><![CDATA[
429+
430+
## Remarks
431+
This method is called when an expression of an otherwise unrecognized type is encountered.
432+
433433
]]></format>
434434
</remarks>
435435
</Docs>

xml/System.Data.Common.CommandTrees/DbFunctionCommandTree.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@
7373
<summary>Gets the expected result type for the function's first result set.</summary>
7474
<value>The expected result type for the function's first result set.</value>
7575
<remarks>
76-
<format type="text/markdown"><![CDATA[
77-
78-
## Remarks
79-
The result shape must be a collection of rows. The <xref:System.Data.Metadata.Edm.RowType.Properties%2A> within a row indicate the expected type for columns with the corresponding names. The result type does not constrain the order of columns.
80-
76+
<format type="text/markdown"><![CDATA[
77+
78+
## Remarks
79+
The result shape must be a collection of rows. The <xref:System.Data.Metadata.Edm.RowType.Properties*> within a row indicate the expected type for columns with the corresponding names. The result type does not constrain the order of columns.
80+
8181
]]></format>
8282
</remarks>
8383
</Docs>

xml/System.Data.Common.CommandTrees/DbLimitExpression.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<format type="text/markdown"><![CDATA[
2121
2222
## Remarks
23-
A <xref:System.Data.Common.CommandTrees.DbLimitExpression> can be applied to any <xref:System.Data.Common.CommandTrees.DbExpression> with a collection result type, including <xref:System.Data.Common.CommandTrees.DbSkipExpression>. <xref:System.Data.Common.CommandTrees.DbLimitExpression> provides the equivalent of the Top operation. It does not require an ordering operation to have been performed on its input. It has two `Expression` properties, <xref:System.Data.Common.CommandTrees.DbLimitExpression.Argument%2A> and <xref:System.Data.Common.CommandTrees.DbLimitExpression.Limit%2A>, that specify the collection and the number of rows to return respectively. <xref:System.Data.Common.CommandTrees.DbLimitExpression> also has a `Boolean` <xref:System.Data.Common.CommandTrees.DbLimitExpression.WithTies> property that controls whether rows equal in rank to the final row are returned. <xref:System.Data.Common.CommandTrees.DbLimitExpression.WithTies%2A> defaults to `false`.
23+
A <xref:System.Data.Common.CommandTrees.DbLimitExpression> can be applied to any <xref:System.Data.Common.CommandTrees.DbExpression> with a collection result type, including <xref:System.Data.Common.CommandTrees.DbSkipExpression>. <xref:System.Data.Common.CommandTrees.DbLimitExpression> provides the equivalent of the Top operation. It does not require an ordering operation to have been performed on its input. It has two `Expression` properties, <xref:System.Data.Common.CommandTrees.DbLimitExpression.Argument*> and <xref:System.Data.Common.CommandTrees.DbLimitExpression.Limit*>, that specify the collection and the number of rows to return respectively. <xref:System.Data.Common.CommandTrees.DbLimitExpression> also has a `Boolean` <xref:System.Data.Common.CommandTrees.DbLimitExpression.WithTies> property that controls whether rows equal in rank to the final row are returned. <xref:System.Data.Common.CommandTrees.DbLimitExpression.WithTies*> defaults to `false`.
2424
2525
]]></format>
2626
</remarks>

xml/System.Data.Common.CommandTrees/DbSkipExpression.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<format type="text/markdown"><![CDATA[
2121
2222
## Remarks
23-
<xref:System.Data.Common.CommandTrees.DbSkipExpression> requires its input collection to have already been sorted. The sort order is represented as the <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder> property. <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder%2A> is a list of <xref:System.Data.Common.CommandTrees.DbSortClause> objects.
23+
<xref:System.Data.Common.CommandTrees.DbSkipExpression> requires its input collection to have already been sorted. The sort order is represented as the <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder> property. <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder*> is a list of <xref:System.Data.Common.CommandTrees.DbSortClause> objects.
2424
2525
]]></format>
2626
</remarks>
@@ -174,7 +174,7 @@
174174
<format type="text/markdown"><![CDATA[
175175
176176
## Remarks
177-
<xref:System.Data.Common.CommandTrees.DbSkipExpression> requires its input collection to have already been sorted. The sort order is represented as the <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder> property. <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder%2A> is a list of <xref:System.Data.Common.CommandTrees.DbSortClause> objects.
177+
<xref:System.Data.Common.CommandTrees.DbSkipExpression> requires its input collection to have already been sorted. The sort order is represented as the <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder> property. <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder*> is a list of <xref:System.Data.Common.CommandTrees.DbSortClause> objects.
178178
179179
]]></format>
180180
</remarks>

xml/System.Data.Common.CommandTrees/DbUnaryExpression.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<format type="text/markdown"><![CDATA[
5656
5757
## Remarks
58-
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbUnaryExpression.Argument> property is set. For example, <xref:System.Data.Common.CommandTrees.DbDistinctExpression> requires that its argument expression has a collection result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbUnaryExpression.Argument%2A> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.
58+
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbUnaryExpression.Argument> property is set. For example, <xref:System.Data.Common.CommandTrees.DbDistinctExpression> requires that its argument expression has a collection result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbUnaryExpression.Argument*> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.
5959
6060
]]></format>
6161
</remarks>

xml/System.Data.Common/DBDataPermission.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@
272272
<format type="text/markdown"><![CDATA[
273273
274274
## Remarks
275-
The <xref:System.Security.Permissions.PermissionState> enumeration takes precedence over the <xref:System.Data.Common.DBDataPermission.AllowBlankPassword> property. Therefore, if you set <xref:System.Data.Common.DBDataPermission.AllowBlankPassword%2A> to `false`, you must also set <xref:System.Security.Permissions.PermissionState> to `None` to prevent a user from making a connection using a blank password.
275+
The <xref:System.Security.Permissions.PermissionState> enumeration takes precedence over the <xref:System.Data.Common.DBDataPermission.AllowBlankPassword> property. Therefore, if you set <xref:System.Data.Common.DBDataPermission.AllowBlankPassword*> to `false`, you must also set <xref:System.Security.Permissions.PermissionState> to `None` to prevent a user from making a connection using a blank password.
276276
277277
]]></format>
278278
</remarks>
@@ -376,7 +376,7 @@
376376
<format type="text/markdown"><![CDATA[
377377
378378
## Remarks
379-
The <xref:System.Security.Permissions.PermissionState> enumeration takes precedence over the <xref:System.Data.Common.DBDataPermission.AllowBlankPassword> property. Therefore, if you set <xref:System.Data.Common.DBDataPermission.AllowBlankPassword%2A> to `false`, you must also set <xref:System.Security.Permissions.PermissionState> to `None` to prevent a user from making a connection using a blank password.
379+
The <xref:System.Security.Permissions.PermissionState> enumeration takes precedence over the <xref:System.Data.Common.DBDataPermission.AllowBlankPassword> property. Therefore, if you set <xref:System.Data.Common.DBDataPermission.AllowBlankPassword*> to `false`, you must also set <xref:System.Security.Permissions.PermissionState> to `None` to prevent a user from making a connection using a blank password.
380380
381381
]]></format>
382382
</remarks>
@@ -729,7 +729,7 @@
729729
<format type="text/markdown"><![CDATA[
730730
731731
## Remarks
732-
Custom code that extends security objects must implement the <xref:System.Data.Common.DBDataPermission.ToXml%2A> and <xref:System.Data.Common.DBDataPermission.FromXml%2A> methods to make the objects security encodable.
732+
Custom code that extends security objects must implement the <xref:System.Data.Common.DBDataPermission.ToXml*> and <xref:System.Data.Common.DBDataPermission.FromXml*> methods to make the objects security encodable.
733733
734734
]]></format>
735735
</remarks>
@@ -777,7 +777,7 @@
777777
<format type="text/markdown"><![CDATA[
778778
779779
## Remarks
780-
The result of a call to <xref:System.Data.Common.DBDataPermission.Union%2A> is a permission that represents all the operations permitted by both the current permission object and the specified permission object. Any demand that passes either permission passes their union.
780+
The result of a call to <xref:System.Data.Common.DBDataPermission.Union*> is a permission that represents all the operations permitted by both the current permission object and the specified permission object. Any demand that passes either permission passes their union.
781781
782782
]]></format>
783783
</remarks>

0 commit comments

Comments
 (0)