Skip to content

Commit f0b6a2b

Browse files
authored
Fix/remove broken links (#16870)
* Fix broken link * fix/remove broken links
1 parent 904555e commit f0b6a2b

9 files changed

+9
-23
lines changed

docs/framework/whats-new/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ In addition, a major focus in .NET Framework 4.7.1 is improved accessibility, wh
595595

596596
**Support for .NET Standard 2.0**
597597

598-
[.NET Standard](../../standard/net-standard.md) defines a set of APIs that must be available on each .NET implementation that supports that version of the standard. .NET Framework 4.7.1 fully supports .NET Standard 2.0 and adds [about 200 APIs](https://github.com/dotnet/standard/blob/master/netstandard/src/ApiCompatBaseline.net461.txt) that are defined in .NET Standard 2.0 and are missing from .NET Framework 4.6.1, 4.6.2, and 4.7. (Note that these versions of the .NET Framework support .NET Standard 2.0 only if additional .NET Standard support files are also deployed on the target system.) For more information, see "BCL - .NET Standard 2.0 Support" in the [.NET Framework 4.7.1 Runtime and Compiler Features](https://devblogs.microsoft.com/dotnet/net-framework-4-7-1-runtime-and-compiler-features/) blog post.
598+
[.NET Standard](../../standard/net-standard.md) defines a set of APIs that must be available on each .NET implementation that supports that version of the standard. .NET Framework 4.7.1 fully supports .NET Standard 2.0 and adds [about 200 APIs](https://github.com/dotnet/standard/blob/master/src/netstandard/src/ApiCompatBaseline.net461.txt) that are defined in .NET Standard 2.0 and are missing from .NET Framework 4.6.1, 4.6.2, and 4.7. (Note that these versions of the .NET Framework support .NET Standard 2.0 only if additional .NET Standard support files are also deployed on the target system.) For more information, see "BCL - .NET Standard 2.0 Support" in the [.NET Framework 4.7.1 Runtime and Compiler Features](https://devblogs.microsoft.com/dotnet/net-framework-4-7-1-runtime-and-compiler-features/) blog post.
599599

600600
**Support for configuration builders**
601601

docs/framework/winforms/controls/colordialog-component-windows-forms.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ The Windows Forms <xref:System.Windows.Forms.ColorDialog> component is a pre-con
2626

2727
<xref:System.Windows.Forms.ColorDialog>
2828
Provides reference information on the <xref:System.Windows.Forms.ColorDialog> class and its members.
29-
30-
[Essential Code for Windows Forms Dialog Boxes](assetId:///VS|dv_vstechart|~\html\vbtchessentialcodeforwindowsformsdialogboxes.htm)
31-
Discusses the Windows Forms dialog box controls and components and the code necessary for executing their basic functions.
32-
29+
3330
[Dialog-Box Controls and Components](dialog-box-controls-and-components-windows-forms.md)
3431
Lists a set of controls that allow users to perform standard interactions with the application or system.

docs/framework/winforms/controls/how-to-save-files-using-the-savefiledialog-component.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ The <xref:System.Windows.Forms.SaveFileDialog> component allows users to browse
170170
For more information about writing file streams, see <xref:System.IO.FileStream.BeginWrite%2A> and <xref:System.IO.FileStream.Write%2A>.
171171
172172
> [!NOTE]
173-
> Certain controls, such as the <xref:System.Windows.Forms.RichTextBox> control, have the ability to save files. For more information, see the "SaveFileDialog Component" section of the MSDN Online Library technical article, [Essential Code for Windows Forms Dialog Boxes](https://go.microsoft.com/fwlink/?LinkID=102575).
173+
> Certain controls, such as the <xref:System.Windows.Forms.RichTextBox> control, have the ability to save files.
174174
175175
## See also
176176

docs/framework/winforms/controls/openfiledialog-component-windows-forms.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,4 @@ The Windows Forms <xref:System.Windows.Forms.OpenFileDialog> component is a pre-
2525
Describes a set of controls and components that allow users to perform standard interactions with the application or system.
2626

2727
[Controls to Use on Windows Forms](controls-to-use-on-windows-forms.md)
28-
Provides a complete list of Windows Forms controls, with links to information on their use.
29-
30-
[Essential Code for Windows Forms Dialog Boxes](https://go.microsoft.com/fwlink/?LinkID=102575)
31-
Discusses the Windows Forms dialog box controls and components and the code necessary for executing their basic functions. (MSDN Online Library technical article)
28+
Provides a complete list of Windows Forms controls, with links to information on their use.

docs/framework/winforms/controls/pagesetupdialog-component-windows-forms.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,5 @@ The Windows Forms <xref:System.Windows.Forms.PageSetupDialog> component is a pre
3939
Provides a complete list of Windows Forms controls, with links to information on their use.
4040

4141
[Dialog-Box Controls and Components](dialog-box-controls-and-components-windows-forms.md)
42-
Describes a set of controls and components that allow users to perform standard interactions with the application or system.
43-
44-
[Essential Code for Windows Forms Dialog Boxes](https://go.microsoft.com/fwlink/?LinkID=102575)
45-
Discusses the Windows Forms dialog box controls and components and the code necessary for executing their basic functions. (MSDN Online Library technical article)
42+
Describes a set of controls and components that allow users to perform standard interactions with the application or system.
43+

docs/framework/winforms/controls/printpreviewdialog-control-windows-forms.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ The Windows Forms `PrintPreviewDialog` control is a pre-configured dialog box us
2626
[Controls to Use on Windows Forms](controls-to-use-on-windows-forms.md)
2727
Provides a complete list of Windows Forms controls, with links to information on their use.
2828

29-
[Essential Code for Windows Forms Dialog Boxes](https://go.microsoft.com/fwlink/?LinkID=102575)
30-
Discusses the Windows Forms dialog box controls and components and the code necessary for executing their basic functions. (MSDN Online Library technical article)
31-
3229
[Dialog-Box Controls and Components](dialog-box-controls-and-components-windows-forms.md)
3330
Lists the different dialog-box controls for Windows Forms.
3431

docs/framework/winforms/controls/savefiledialog-component-windows-forms.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,4 @@ The Windows Forms <xref:System.Windows.Forms.SaveFileDialog> component is a pre-
2525
Provides a complete list of Windows Forms controls, with links to information on their use.
2626

2727
[Dialog-Box Controls and Components](dialog-box-controls-and-components-windows-forms.md)
28-
Describes a set of controls and components that allow users to perform standard interactions with the application or system.
29-
30-
[Essential Code for Windows Forms Dialog Boxes](https://go.microsoft.com/fwlink/?LinkID=102575)
31-
Discusses the Windows Forms dialog box controls and components and the code necessary for executing their basic functions. (MSDN Online Library technical article)
28+
Describes a set of controls and components that allow users to perform standard interactions with the application or system.

docs/framework/wpf/advanced/weak-event-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In applications, it is possible that handlers that are attached to event sources
3030
|Use an existing weak event manager class|If the event you want to subscribe to has a corresponding <xref:System.Windows.WeakEventManager>, use the existing weak event manager. For a list of weak event managers that are included with WPF, see the inheritance hierarchy in the <xref:System.Windows.WeakEventManager> class. Because the included weak event managers are limited, you will probably need to choose one of the other approaches.|
3131
|Use a generic weak event manager class|Use a generic <xref:System.Windows.WeakEventManager%602> when an existing <xref:System.Windows.WeakEventManager> is not available, you want an easy way to implement, and you are not concerned about efficiency. The generic <xref:System.Windows.WeakEventManager%602> is less efficient than an existing or custom weak event manager. For example, the generic class does more reflection to discover the event given the event's name. Also, the code to register the event by using the generic <xref:System.Windows.WeakEventManager%602> is more verbose than using an existing or custom <xref:System.Windows.WeakEventManager>.|
3232
|Create a custom weak event manager class|Create a custom <xref:System.Windows.WeakEventManager> when an existing <xref:System.Windows.WeakEventManager> is not available and you want the best efficiency. Using a custom <xref:System.Windows.WeakEventManager> to subscribe to an event will be more efficient, but you do incur the cost of writing more code at the beginning.|
33-
|Use a third-party weak event manager|NuGet has [several weak event managers](https://www.nuget.org/packages?q=weak+event+manager&prerel=false) and many WPF frameworks also support the pattern (for instance, see [Prism's documentation on loosely coupled event subscription](https://github.com/PrismLibrary/Prism-Documentation/blob/master/docs/wpf/Communication.md#subscribing-to-events)).|
33+
|Use a third-party weak event manager|NuGet has [several weak event managers](https://www.nuget.org/packages?q=weak+event+manager&prerel=false) and many WPF frameworks also support the pattern (for instance, see [Prism's documentation on loosely coupled event subscription](https://github.com/PrismLibrary/Prism-Documentation/blob/master/docs/wpf/legacy/Communication.md#subscribing-to-events)).|
3434

3535
The following sections describe how to implement the weak event pattern. For purposes of this discussion, the event to subscribe to has the following characteristics.
3636

docs/framework/wpf/security-wpf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ ms.assetid: ee1baea0-3611-4e36-9ad6-fcd5205376fb
178178
Feature controls are applied by the process instantiating the WebBrowser ActiveX object. Therefore, if you are creating a stand-alone application that can navigate to untrusted content, you should seriously consider enabling additional feature controls.
179179

180180
> [!NOTE]
181-
> This recommendation is based on general recommendations for MSHTML and SHDOCVW host security. For more information, see [The MSHTML Host Security FAQ: Part I of II](https://msrc-blog.microsoft.com/archive/2009/04/02/the-mshtml-host-security-faq.aspx) and [The MSHTML Host Security FAQ: Part II of II](https://msrc-blog.microsoft.com/archive/2009/04/03/the-mshtml-host-security-faq-part-ii-of-ii.aspx).
181+
> This recommendation is based on general recommendations for MSHTML and SHDOCVW host security. For more information, see [The MSHTML Host Security FAQ: Part I of II](https://msrc-blog.microsoft.com/2009/04/02/the-mshtml-host-security-faq-part-i-of-ii/) and [The MSHTML Host Security FAQ: Part II of II](https://msrc-blog.microsoft.com/2009/04/03/the-mshtml-host-security-faq-part-ii-of-ii/).
182182
183183
For your executable, consider enabling the following feature controls by setting the registry value to 1.
184184

0 commit comments

Comments
 (0)