Skip to content

Commit 72e7540

Browse files
authored
update msdn links - part 5 (#3840)
* update msdn links * fix build warnings
1 parent 4c0a328 commit 72e7540

File tree

102 files changed

+9850
-9848
lines changed

Some content is hidden

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

102 files changed

+9850
-9848
lines changed

xml/System.Text.RegularExpressions/Group.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
]]></format>
118118
</remarks>
119119
<related type="Article" href="~/docs/standard/base-types/grouping-constructs-in-regular-expressions.md">Grouping Constructs in Regular Expressions</related>
120-
<related type="Article" href="~/docst/standard/base-types/quantifiers-in-regular-expressions.md">Quantifiers in Regular Expressions</related>
120+
<related type="Article" href="~/docs/standard/base-types/quantifiers-in-regular-expressions.md">Quantifiers in Regular Expressions</related>
121121
</Docs>
122122
</Member>
123123
<Member MemberName="Name">

xml/System.Web.Compilation/ClientBuildManagerParameter.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
<altmember cref="T:System.Web.Compilation.ClientBuildManager" />
251251
<altmember cref="T:System.Web.Compilation.PrecompilationFlags" />
252252
<related type="Article" href="https://docs.microsoft.com/previous-versions/aspnet/bb398860(v=vs.100)">ASP.NET Web Site Precompilation</related>
253-
<related type="Article" href=" ~/docs/standard/assembly/create-use-strong-named.md">Create and use strong-named assemblies</related>
253+
<related type="Article" href="~/docs/standard/assembly/create-use-strong-named.md">Create and use strong-named assemblies</related>
254254
</Docs>
255255
</Member>
256256
</Members>

xml/System.Web.Mail/MailMessage.xml

Lines changed: 93 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@
2323
<Docs>
2424
<summary>Provides properties and methods for constructing an email message. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
2525
<remarks>
26-
<format type="text/markdown"><![CDATA[
27-
28-
## Examples
29-
The following example shows how to use the <xref:System.Web.Mail.MailMessage> class.
30-
26+
<format type="text/markdown"><![CDATA[
27+
28+
## Examples
29+
The following example shows how to use the <xref:System.Web.Mail.MailMessage> class.
30+
3131
> [!IMPORTANT]
32-
> This control has a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see [Script Exploits Overview](https://msdn.microsoft.com/library/772c7312-211a-4eb3-8d6e-eec0aa1dcc07).
33-
32+
> This control has a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see [Script Exploits Overview](https://docs.microsoft.com/previous-versions/aspnet/w1sw53ds(v=vs.100)).
33+
3434
[!code-aspx-csharp[System.Web.Mail.MailMessage#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Mail.MailMessage/CS/mailformcs.aspx#1)]
35-
[!code-aspx-vb[System.Web.Mail.MailMessage#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage/VB/mailformvb.aspx#1)]
36-
35+
[!code-aspx-vb[System.Web.Mail.MailMessage#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage/VB/mailformvb.aspx#1)]
36+
3737
]]></format>
3838
</remarks>
3939
</Docs>
@@ -83,17 +83,17 @@
8383
<summary>Specifies the collection of attachments that are transmitted with the message. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
8484
<value>An <see cref="T:System.Collections.IList" /> collection of <see cref="T:System.Web.Mail.MailAttachment" /> objects.</value>
8585
<remarks>
86-
<format type="text/markdown"><![CDATA[
87-
88-
## Remarks
89-
New attachments can be added to the mail message by a call to `Message.Attachments.Add(MyMailMessage)`. See <xref:System.Web.Mail.SmtpMail.Send%2A> for an example of <xref:System.Web.Mail.SmtpMail> usage.
90-
91-
92-
93-
## Examples
86+
<format type="text/markdown"><![CDATA[
87+
88+
## Remarks
89+
New attachments can be added to the mail message by a call to `Message.Attachments.Add(MyMailMessage)`. See <xref:System.Web.Mail.SmtpMail.Send%2A> for an example of <xref:System.Web.Mail.SmtpMail> usage.
90+
91+
92+
93+
## Examples
9494
[!code-csharp[System.Web.Mail.MailMessage.Attachments#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Attachments/CS/attachmentsample.cs#1)]
95-
[!code-vb[System.Web.Mail.MailMessage.Attachments#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Attachments/VB/attachmentsample.vb#1)]
96-
95+
[!code-vb[System.Web.Mail.MailMessage.Attachments#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Attachments/VB/attachmentsample.vb#1)]
96+
9797
]]></format>
9898
</remarks>
9999
</Docs>
@@ -127,19 +127,19 @@
127127
<summary>Gets or sets a semicolon-delimited list of email addresses that receive a blind carbon copy (BCC) of the email message. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
128128
<value>A semicolon-delimited list of email addresses that receive a blind carbon copy (BCC) of the email message.</value>
129129
<remarks>
130-
<format type="text/markdown"><![CDATA[
131-
132-
## Remarks
133-
Recipients in the semicolon-delimited list can be either email addresses or address book display names.
134-
135-
The primary and carbon copy (<xref:System.Web.Mail.MailMessage.Cc%2A>) recipients do not see the addresses in the `Bcc` field.
136-
137-
138-
139-
## Examples
130+
<format type="text/markdown"><![CDATA[
131+
132+
## Remarks
133+
Recipients in the semicolon-delimited list can be either email addresses or address book display names.
134+
135+
The primary and carbon copy (<xref:System.Web.Mail.MailMessage.Cc%2A>) recipients do not see the addresses in the `Bcc` field.
136+
137+
138+
139+
## Examples
140140
[!code-csharp[System.Web.Mail.MailMessage.Bcc#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Bcc/CS/systemwebmailmailmessagebcc.cs#1)]
141-
[!code-vb[System.Web.Mail.MailMessage.Bcc#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Bcc/VB/systemwebmailmailmessagebcc.vb#1)]
142-
141+
[!code-vb[System.Web.Mail.MailMessage.Bcc#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Bcc/VB/systemwebmailmailmessagebcc.vb#1)]
142+
143143
]]></format>
144144
</remarks>
145145
</Docs>
@@ -204,12 +204,12 @@
204204
<summary>Gets or sets the encoding type of the body of the email message. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
205205
<value>One of the <see cref="T:System.Text.Encoding" /> values that indicates the encoding type of the body of the email message.</value>
206206
<remarks>
207-
<format type="text/markdown"><![CDATA[
208-
209-
## Examples
207+
<format type="text/markdown"><![CDATA[
208+
209+
## Examples
210210
[!code-csharp[System.Web.Mail.MailMessage.BodyEncoding#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Mail.MailMessage.BodyEncoding/CS/systemwebmailmailmessagebodyencoding.cs#1)]
211-
[!code-vb[System.Web.Mail.MailMessage.BodyEncoding#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.BodyEncoding/VB/systemwebmailmailmessagebodyencoding.vb#1)]
212-
211+
[!code-vb[System.Web.Mail.MailMessage.BodyEncoding#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.BodyEncoding/VB/systemwebmailmailmessagebodyencoding.vb#1)]
212+
213213
]]></format>
214214
</remarks>
215215
</Docs>
@@ -243,12 +243,12 @@
243243
<summary>Gets or sets the content type of the body of the email message. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
244244
<value>One of the <see cref="T:System.Web.Mail.MailFormat" /> values.</value>
245245
<remarks>
246-
<format type="text/markdown"><![CDATA[
247-
248-
## Examples
246+
<format type="text/markdown"><![CDATA[
247+
248+
## Examples
249249
[!code-csharp[System.Web.Mail.MailMessage.BodyFormat#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Mail.MailMessage.BodyFormat/CS/systemwebmailmailmessagebodyformat.cs#1)]
250-
[!code-vb[System.Web.Mail.MailMessage.BodyFormat#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.BodyFormat/VB/systemwebmailmailmessagebodyformat.vb#1)]
251-
250+
[!code-vb[System.Web.Mail.MailMessage.BodyFormat#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.BodyFormat/VB/systemwebmailmailmessagebodyformat.vb#1)]
251+
252252
]]></format>
253253
</remarks>
254254
</Docs>
@@ -282,17 +282,17 @@
282282
<summary>Gets or sets a semicolon-delimited list of email addresses that receive a carbon copy (CC) of the email message. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
283283
<value>A semicolon-delimited list of email addresses that receive a carbon copy (CC) of the email message.</value>
284284
<remarks>
285-
<format type="text/markdown"><![CDATA[
286-
287-
## Remarks
288-
Recipients in the semicolon-delimited list can be either email addresses or address book display names.
289-
290-
291-
292-
## Examples
285+
<format type="text/markdown"><![CDATA[
286+
287+
## Remarks
288+
Recipients in the semicolon-delimited list can be either email addresses or address book display names.
289+
290+
291+
292+
## Examples
293293
[!code-csharp[System.Web.Mail.MailMessage.Cc#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Cc/CS/systemwebmailmailmessagecc.cs#1)]
294-
[!code-vb[System.Web.Mail.MailMessage.Cc#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Cc/VB/systemwebmailmailmessagecc.vb#1)]
295-
294+
[!code-vb[System.Web.Mail.MailMessage.Cc#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Cc/VB/systemwebmailmailmessagecc.vb#1)]
295+
296296
]]></format>
297297
</remarks>
298298
</Docs>
@@ -323,19 +323,19 @@
323323
<summary>Gets a collection of objects that map to Microsoft Collaboration Data Objects (CDO) fields. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
324324
<value>An <see cref="T:System.Collections.IDictionary" /> collection of objects that map to Collaboration Data Objects (CDO) fields.</value>
325325
<remarks>
326-
<format type="text/markdown"><![CDATA[
327-
328-
## Remarks
329-
The <xref:System.Web.Mail.MailMessage.Fields%2A> property is used to set extended properties for Collaboration Data Objects (CDO). For more information about CDO, see "Collaboration Data Objects" and "Configuration CoClass" in the MSDN library at https://msdn.microsoft.com/library.
330-
331-
332-
333-
## Examples
334-
The following code example demonstrates using the <xref:System.Web.Mail.MailMessage.Fields%2A> property to send your user name and password to a Simple Mail Transfer Protocol (SMTP) server for authentication.
335-
326+
<format type="text/markdown"><![CDATA[
327+
328+
## Remarks
329+
The <xref:System.Web.Mail.MailMessage.Fields%2A> property is used to set extended properties for Collaboration Data Objects (CDO). For more information about CDO, see "Collaboration Data Objects" and "Configuration CoClass" in the MSDN library at https://msdn.microsoft.com/library.
330+
331+
332+
333+
## Examples
334+
The following code example demonstrates using the <xref:System.Web.Mail.MailMessage.Fields%2A> property to send your user name and password to a Simple Mail Transfer Protocol (SMTP) server for authentication.
335+
336336
[!code-csharp[System.Web.Mail.MailMessage.Fields#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Fields/CS/MailMessageFieldscs.aspx#1)]
337-
[!code-vb[System.Web.Mail.MailMessage.Fields#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Fields/VB/MailMessageFieldsvb.aspx#1)]
338-
337+
[!code-vb[System.Web.Mail.MailMessage.Fields#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Fields/VB/MailMessageFieldsvb.aspx#1)]
338+
339339
]]></format>
340340
</remarks>
341341
</Docs>
@@ -369,12 +369,12 @@
369369
<summary>Gets or sets the email address of the sender. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
370370
<value>The sender's email address.</value>
371371
<remarks>
372-
<format type="text/markdown"><![CDATA[
373-
374-
## Examples
372+
<format type="text/markdown"><![CDATA[
373+
374+
## Examples
375375
[!code-csharp[SystemWebMailMailMessageFrom#1](~/samples/snippets/csharp/VS_Snippets_WebNet/SystemWebMailMailMessageFrom/CS/systemwebmailmailmessagefrom.cs#1)]
376-
[!code-vb[SystemWebMailMailMessageFrom#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/SystemWebMailMailMessageFrom/VB/systemwebmailmailmessagefrom.vb#1)]
377-
376+
[!code-vb[SystemWebMailMailMessageFrom#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/SystemWebMailMailMessageFrom/VB/systemwebmailmailmessagefrom.vb#1)]
377+
378378
]]></format>
379379
</remarks>
380380
</Docs>
@@ -436,12 +436,12 @@
436436
<summary>Gets or sets the priority of the email message. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
437437
<value>One of the <see cref="T:System.Web.Mail.MailPriority" /> values.</value>
438438
<remarks>
439-
<format type="text/markdown"><![CDATA[
440-
441-
## Examples
439+
<format type="text/markdown"><![CDATA[
440+
441+
## Examples
442442
[!code-csharp[System.Web.Mail.MailMessage.Priority#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Priority/CS/systemwebmailmailmessagepriority.cs#1)]
443-
[!code-vb[System.Web.Mail.MailMessage.Priority#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Priority/VB/systemwebmailmailmessagepriority.vb#1)]
444-
443+
[!code-vb[System.Web.Mail.MailMessage.Priority#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.Priority/VB/systemwebmailmailmessagepriority.vb#1)]
444+
445445
]]></format>
446446
</remarks>
447447
</Docs>
@@ -506,17 +506,17 @@
506506
<summary>Gets or sets a semicolon-delimited list of recipient email addresses. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
507507
<value>A semicolon-delimited list of email addresses.</value>
508508
<remarks>
509-
<format type="text/markdown"><![CDATA[
510-
511-
## Remarks
512-
Recipients in the semicolon-delimited list can be either email addresses or address book display names.
513-
514-
515-
516-
## Examples
509+
<format type="text/markdown"><![CDATA[
510+
511+
## Remarks
512+
Recipients in the semicolon-delimited list can be either email addresses or address book display names.
513+
514+
515+
516+
## Examples
517517
[!code-csharp[SystemWebMailMailMessageTo#1](~/samples/snippets/csharp/VS_Snippets_WebNet/SystemWebMailMailMessageTo/CS/systemwebmailmailmessageto.cs#1)]
518-
[!code-vb[SystemWebMailMailMessageTo#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/SystemWebMailMailMessageTo/VB/systemwebmailmailmessageto.vb#1)]
519-
518+
[!code-vb[SystemWebMailMailMessageTo#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/SystemWebMailMailMessageTo/VB/systemwebmailmailmessageto.vb#1)]
519+
520520
]]></format>
521521
</remarks>
522522
</Docs>
@@ -550,12 +550,12 @@
550550
<summary>Gets or sets the <see langword="Content-Base" /> HTTP header, the URL base of all relative URLs used within the HTML-encoded body of the email message. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
551551
<value>The URL base.</value>
552552
<remarks>
553-
<format type="text/markdown"><![CDATA[
554-
555-
## Examples
553+
<format type="text/markdown"><![CDATA[
554+
555+
## Examples
556556
[!code-csharp[System.Web.Mail.MailMessage.UrlContentBase#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Mail.MailMessage.UrlContentBase/CS/systemwebmailmailmessageurlcontentbase.cs#1)]
557-
[!code-vb[System.Web.Mail.MailMessage.UrlContentBase#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.UrlContentBase/VB/systemwebmailmailmessageurlcontentbase.vb#1)]
558-
557+
[!code-vb[System.Web.Mail.MailMessage.UrlContentBase#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage.UrlContentBase/VB/systemwebmailmailmessageurlcontentbase.vb#1)]
558+
559559
]]></format>
560560
</remarks>
561561
</Docs>
@@ -589,12 +589,12 @@
589589
<summary>Gets or sets the <see langword="Content-Location" /> HTTP header for the email message. Recommended alternative: <see cref="N:System.Net.Mail" />.</summary>
590590
<value>The <see langword="content-base" /> header.</value>
591591
<remarks>
592-
<format type="text/markdown"><![CDATA[
593-
594-
## Examples
592+
<format type="text/markdown"><![CDATA[
593+
594+
## Examples
595595
[!code-aspx-csharp[System.Web.Mail.MailMessage#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Mail.MailMessage/CS/mailformcs.aspx#1)]
596-
[!code-aspx-vb[System.Web.Mail.MailMessage#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage/VB/mailformvb.aspx#1)]
597-
596+
[!code-aspx-vb[System.Web.Mail.MailMessage#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Mail.MailMessage/VB/mailformvb.aspx#1)]
597+
598598
]]></format>
599599
</remarks>
600600
</Docs>

xml/System.Web.Management/IRegiisUtility.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
]]></format>
3131
</remarks>
3232
<forInternalUseOnly />
33-
<related type="Article" href="https://msdn.microsoft.com/library/a202175f-a85a-44fd-bc35-c8b5c82f31c3">ASP.NET Configuration Overview</related>
34-
<related type="Article" href="https://msdn.microsoft.com/library/1298034b-5f7d-464d-abd1-ad9e6b3eeb7e">Configuring ASP.NET Applications</related>
33+
<related type="Article" href="https://docs.microsoft.com/previous-versions/aspnet/ms178683(v=vs.100)">ASP.NET Configuration Overview</related>
34+
<related type="Article" href="https://docs.microsoft.com/previous-versions/aspnet/6hy1xzbw(v=vs.100)">Administering ASP.NET Web Sites</related>
3535
</Docs>
3636
<Members>
3737
<Member MemberName="ProtectedConfigAction">

xml/System.Web.Management/RegiisUtility.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
]]></format>
3030
</remarks>
3131
<forInternalUseOnly />
32-
<related type="Article" href="https://msdn.microsoft.com/library/a202175f-a85a-44fd-bc35-c8b5c82f31c3">ASP.NET Configuration Overview</related>
33-
<related type="Article" href="https://msdn.microsoft.com/library/1298034b-5f7d-464d-abd1-ad9e6b3eeb7e">Configuring ASP.NET Applications</related>
32+
<related type="Article" href="https://docs.microsoft.com/previous-versions/aspnet/ms178683(v=vs.100)">ASP.NET Configuration Overview</related>
33+
<related type="Article" href="https://docs.microsoft.com/previous-versions/aspnet/6hy1xzbw(v=vs.100)">Administering ASP.NET Web Sites</related>
3434
</Docs>
3535
<Members>
3636
<Member MemberName=".ctor">

0 commit comments

Comments
 (0)