Skip to content

Commit 3a89415

Browse files
authored
use see href link in the ecmaxml sections (#3898)
1 parent 0b71c9b commit 3a89415

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

xml/System.Text.RegularExpressions/RegexOptions.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
</ReturnValue>
108108
<MemberValue>8</MemberValue>
109109
<Docs>
110-
<summary>Specifies that the regular expression is compiled to an assembly. This yields faster execution but increases startup time. This value should not be assigned to the <see cref="P:System.Text.RegularExpressions.RegexCompilationInfo.Options" /> property when calling the <see cref="M:System.Text.RegularExpressions.Regex.CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName)" /> method. For more information, see the "Compiled Regular Expressions" section in the [Regular Expression Options](~/docs/standard/base-types/regular-expression-options.md) topic.</summary>
110+
<summary>Specifies that the regular expression is compiled to an assembly. This yields faster execution but increases startup time. This value should not be assigned to the <see cref="P:System.Text.RegularExpressions.RegexCompilationInfo.Options" /> property when calling the <see cref="M:System.Text.RegularExpressions.Regex.CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName)" /> method. For more information, see the "Compiled Regular Expressions" section in the <see href="~/docs/standard/base-types/regular-expression-options.md">Regular Expression Options</see> article.</summary>
111111
</Docs>
112112
</Member>
113113
<Member MemberName="CultureInvariant">
@@ -145,7 +145,7 @@
145145
</ReturnValue>
146146
<MemberValue>512</MemberValue>
147147
<Docs>
148-
<summary>Specifies that cultural differences in language is ignored. For more information, see the "Comparison Using the Invariant Culture" section in the [Regular Expression Options](~/docs/standard/base-types/regular-expression-options.md) topic.</summary>
148+
<summary>Specifies that cultural differences in language is ignored. For more information, see the "Comparison Using the Invariant Culture" section in the <see href="~/docs/standard/base-types/regular-expression-options.md">Regular Expression Options</see> article.</summary>
149149
</Docs>
150150
</Member>
151151
<Member MemberName="ECMAScript">
@@ -185,7 +185,7 @@
185185
<Docs>
186186
<summary>Enables ECMAScript-compliant behavior for the expression. This value can be used only in conjunction with the <see cref="F:System.Text.RegularExpressions.RegexOptions.IgnoreCase" />, <see cref="F:System.Text.RegularExpressions.RegexOptions.Multiline" />, and <see cref="F:System.Text.RegularExpressions.RegexOptions.Compiled" /> values. The use of this value with any other values results in an exception.
187187

188-
For more information on the <see cref="F:System.Text.RegularExpressions.RegexOptions.ECMAScript" /> option, see the "ECMAScript Matching Behavior" section in the [Regular Expression Options](~/docs/standard/base-types/regular-expression-options.md) topic.</summary>
188+
For more information on the <see cref="F:System.Text.RegularExpressions.RegexOptions.ECMAScript" /> option, see the "ECMAScript Matching Behavior" section in the <see href="~/docs/standard/base-types/regular-expression-options.md">Regular Expression Options</see> article.</summary>
189189
</Docs>
190190
</Member>
191191
<Member MemberName="ExplicitCapture">
@@ -223,7 +223,7 @@
223223
</ReturnValue>
224224
<MemberValue>4</MemberValue>
225225
<Docs>
226-
<summary>Specifies that the only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt;...). This allows unnamed parentheses to act as noncapturing groups without the syntactic clumsiness of the expression (?:...). For more information, see the "Explicit Captures Only" section in the [Regular Expression Options](~/docs/standard/base-types/regular-expression-options.md) topic.</summary>
226+
<summary>Specifies that the only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt;...). This allows unnamed parentheses to act as noncapturing groups without the syntactic clumsiness of the expression (?:...). For more information, see the "Explicit Captures Only" section in the <see href="~/docs/standard/base-types/regular-expression-options.md">Regular Expression Options</see> article.</summary>
227227
</Docs>
228228
</Member>
229229
<Member MemberName="IgnoreCase">
@@ -261,7 +261,7 @@
261261
</ReturnValue>
262262
<MemberValue>1</MemberValue>
263263
<Docs>
264-
<summary>Specifies case-insensitive matching. For more information, see the "Case-Insensitive Matching " section in the [Regular Expression Options](~/docs/standard/base-types/regular-expression-options.md) topic.</summary>
264+
<summary>Specifies case-insensitive matching. For more information, see the "Case-Insensitive Matching " section in the <see href="~/docs/standard/base-types/regular-expression-options.md">Regular Expression Options</see> article.</summary>
265265
</Docs>
266266
</Member>
267267
<Member MemberName="IgnorePatternWhitespace">
@@ -337,7 +337,7 @@
337337
</ReturnValue>
338338
<MemberValue>2</MemberValue>
339339
<Docs>
340-
<summary>Multiline mode. Changes the meaning of ^ and $ so they match at the beginning and end, respectively, of any line, and not just the beginning and end of the entire string. For more information, see the "Multiline Mode" section in the [Regular Expression Options](~/docs/standard/base-types/regular-expression-options.md) topic.</summary>
340+
<summary>Multiline mode. Changes the meaning of ^ and $ so they match at the beginning and end, respectively, of any line, and not just the beginning and end of the entire string. For more information, see the "Multiline Mode" section in the <see href="~/docs/standard/base-types/regular-expression-options.md">Regular Expression Options</see> article.</summary>
341341
</Docs>
342342
</Member>
343343
<Member MemberName="None">
@@ -375,7 +375,7 @@
375375
</ReturnValue>
376376
<MemberValue>0</MemberValue>
377377
<Docs>
378-
<summary>Specifies that no options are set. For more information about the default behavior of the regular expression engine, see the "Default Options" section in the [Regular Expression Options](~/docs/standard/base-types/regular-expression-options.md) topic.</summary>
378+
<summary>Specifies that no options are set. For more information about the default behavior of the regular expression engine, see the "Default Options" section in the <see href="~/docs/standard/base-types/regular-expression-options.md">Regular Expression Options</see> article.</summary>
379379
</Docs>
380380
</Member>
381381
<Member MemberName="RightToLeft">
@@ -413,7 +413,7 @@
413413
</ReturnValue>
414414
<MemberValue>64</MemberValue>
415415
<Docs>
416-
<summary>Specifies that the search will be from right to left instead of from left to right. For more information, see the "Right-to-Left Mode" section in the [Regular Expression Options](~/docs/standard/base-types/regular-expression-options.md) topic.</summary>
416+
<summary>Specifies that the search will be from right to left instead of from left to right. For more information, see the "Right-to-Left Mode" section in the <see href="~/docs/standard/base-types/regular-expression-options.md">Regular Expression Options</see> article.</summary>
417417
</Docs>
418418
</Member>
419419
<Member MemberName="Singleline">
@@ -451,7 +451,7 @@
451451
</ReturnValue>
452452
<MemberValue>16</MemberValue>
453453
<Docs>
454-
<summary>Specifies single-line mode. Changes the meaning of the dot (.) so it matches every character (instead of every character except \n). For more information, see the "Single-line Mode" section in the [Regular Expression Options](~/docs/standard/base-types/regular-expression-options.md) topic.</summary>
454+
<summary>Specifies single-line mode. Changes the meaning of the dot (.) so it matches every character (instead of every character except \n). For more information, see the "Single-line Mode" section in the <see href="~/docs/standard/base-types/regular-expression-options.md">Regular Expression Options</see> article.</summary>
455455
</Docs>
456456
</Member>
457457
</Members>

0 commit comments

Comments
 (0)