Skip to content

Commit 8852886

Browse files
nemrismRon Petrusha
authored andcommitted
format See also sections (dotnet#7509)
1 parent 7c53506 commit 8852886

File tree

100 files changed

+515
-421
lines changed

Some content is hidden

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

100 files changed

+515
-421
lines changed

docs/standard/cross-platform/cross-platform-development-with-the-portable-class-library.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,10 @@ Version Information example
215215
</div>
216216
```
217217

218-
## See Also
219-
[Using Portable Class Library with MVVM](../../../docs/standard/cross-platform/using-portable-class-library-with-model-view-view-model.md)
220-
[App Resources for Libraries That Target Multiple Platforms](../../../docs/standard/cross-platform/app-resources-for-libraries-that-target-multiple-platforms.md)
221-
[.NET Portability Analyzer](https://visualstudiogallery.msdn.microsoft.com/1177943e-cfb7-4822-a8a6-e56c7905292b)
222-
[.NET Framework Support for Windows Store Apps and Windows Runtime](../../../docs/standard/cross-platform/support-for-windows-store-apps-and-windows-runtime.md)
223-
[Deployment](../../../docs/framework/deployment/net-framework-applications.md)
218+
## See also
219+
220+
- [Using Portable Class Library with MVVM](../../../docs/standard/cross-platform/using-portable-class-library-with-model-view-view-model.md)
221+
- [App Resources for Libraries That Target Multiple Platforms](../../../docs/standard/cross-platform/app-resources-for-libraries-that-target-multiple-platforms.md)
222+
- [.NET Portability Analyzer](https://visualstudiogallery.msdn.microsoft.com/1177943e-cfb7-4822-a8a6-e56c7905292b)
223+
- [.NET Framework Support for Windows Store Apps and Windows Runtime](../../../docs/standard/cross-platform/support-for-windows-store-apps-and-windows-runtime.md)
224+
- [Deployment](../../../docs/framework/deployment/net-framework-applications.md)

docs/standard/cross-platform/passing-a-uri-to-the-windows-runtime.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@ Windows Runtime methods accept only absolute URIs. If you pass a relative URI to
3131

3232
For more information about these schemes, see [URI schemes](https://msdn.microsoft.com/library/windows/apps/jj655406.aspx) in the Windows Dev Center.
3333

34-
## See Also
35-
[.NET Framework Support for Windows Store Apps and Windows Runtime](../../../docs/standard/cross-platform/support-for-windows-store-apps-and-windows-runtime.md)
34+
## See also
35+
36+
- [.NET Framework Support for Windows Store Apps and Windows Runtime](../../../docs/standard/cross-platform/support-for-windows-store-apps-and-windows-runtime.md)

docs/standard/cross-platform/using-portable-class-library-with-model-view-view-model.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,6 @@ You can use the .NET Framework [Portable Class Library](../../../docs/standard/c
8585

8686
[!code-xaml[PortableClassLibraryMVVM#6](../../../samples/snippets/csharp/VS_Snippets_CLR/portableclasslibrarymvvm/cs/mainwindow.xaml#6)]
8787

88-
## See Also
89-
[Portable Class Library](../../../docs/standard/cross-platform/cross-platform-development-with-the-portable-class-library.md)
88+
## See also
89+
90+
- [Portable Class Library](../../../docs/standard/cross-platform/cross-platform-development-with-the-portable-class-library.md)

docs/standard/cross-platform/windowsruntimestreamextensions-asrandomaccessstream-method.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ This extension method is available only when you develop Windows Store apps. Thi
6868

6969
Supported in: Windows 8.1
7070

71-
## See Also
71+
## See also
7272

73-
[System.IO.WindowsRuntimeStreamExtensions](https://msdn.microsoft.com/library/system.io.windowsruntimestreamextensions(v=vs.110).aspx)
74-
[How to: Convert Between .NET Framework Streams and Windows Runtime Streams](../io/how-to-convert-between-dotnet-streams-and-winrt-streams.md)
73+
-[System.IO.WindowsRuntimeStreamExtensions](https://msdn.microsoft.com/library/system.io.windowsruntimestreamextensions(v=vs.110).aspx)
74+
-[How to: Convert Between .NET Framework Streams and Windows Runtime Streams](../io/how-to-convert-between-dotnet-streams-and-winrt-streams.md)

docs/standard/data/xml/accessing-attributes-in-the-dom.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,5 +254,6 @@ using System.Xml;
254254
XmlAttribute attr = doc.DocumentElement.Attributes[0];
255255
```
256256

257-
## See Also
258-
[XML Document Object Model (DOM)](../../../../docs/standard/data/xml/xml-document-object-model-dom.md)
257+
## See also
258+
259+
- [XML Document Object Model (DOM)](../../../../docs/standard/data/xml/xml-document-object-model-dom.md)

docs/standard/data/xml/accessing-strongly-typed-xml-data-using-xpathnavigator.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,13 @@ Console.WriteLine("The price of the book has been dropped 20% from {0:C} to {1:C
179179

180180
For more information about the mapping from schema built-in types to CLR types, see [Type Support in the System.Xml Classes](../../../../docs/standard/data/xml/type-support-in-the-system-xml-classes.md).
181181

182-
## See Also
183-
<xref:System.Xml.XmlDocument>
184-
<xref:System.Xml.XPath.XPathDocument>
185-
<xref:System.Xml.XPath.XPathNavigator>
186-
[Type Support in the System.Xml Classes](../../../../docs/standard/data/xml/type-support-in-the-system-xml-classes.md)
187-
[Process XML Data Using the XPath Data Model](../../../../docs/standard/data/xml/process-xml-data-using-the-xpath-data-model.md)
188-
[Node Set Navigation Using XPathNavigator](../../../../docs/standard/data/xml/node-set-navigation-using-xpathnavigator.md)
189-
[Attribute and Namespace Node Navigation Using XPathNavigator](../../../../docs/standard/data/xml/attribute-and-namespace-node-navigation-using-xpathnavigator.md)
190-
[Extract XML Data Using XPathNavigator](../../../../docs/standard/data/xml/extract-xml-data-using-xpathnavigator.md)
182+
## See also
183+
184+
- <xref:System.Xml.XmlDocument>
185+
- <xref:System.Xml.XPath.XPathDocument>
186+
- <xref:System.Xml.XPath.XPathNavigator>
187+
- [Type Support in the System.Xml Classes](../../../../docs/standard/data/xml/type-support-in-the-system-xml-classes.md)
188+
- [Process XML Data Using the XPath Data Model](../../../../docs/standard/data/xml/process-xml-data-using-the-xpath-data-model.md)
189+
- [Node Set Navigation Using XPathNavigator](../../../../docs/standard/data/xml/node-set-navigation-using-xpathnavigator.md)
190+
- [Attribute and Namespace Node Navigation Using XPathNavigator](../../../../docs/standard/data/xml/attribute-and-namespace-node-navigation-using-xpathnavigator.md)
191+
- [Extract XML Data Using XPathNavigator](../../../../docs/standard/data/xml/extract-xml-data-using-xpathnavigator.md)

docs/standard/data/xml/accessing-xml-data-using-xpathnavigator.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,13 @@ The <xref:System.Xml.XPath.XPathNavigator> class provides methods to navigate no
2525
[User Defined Functions and Variables](../../../../docs/standard/data/xml/user-defined-functions-and-variables.md)
2626
Describes implementing a custom <xref:System.Xml.Xsl.XsltContext> class along with the interfaces <xref:System.Xml.Xsl.IXsltContextFunction> and <xref:System.Xml.Xsl.IXsltContextVariable> that support extension functions and variables.
2727

28-
## See Also
29-
<xref:System.Xml.XmlDocument>
30-
<xref:System.Xml.XPath.XPathDocument>
31-
<xref:System.Xml.XPath.XPathNavigator>
32-
[Process XML Data Using the XPath Data Model](../../../../docs/standard/data/xml/process-xml-data-using-the-xpath-data-model.md)
33-
[Reading XML Data using XPathDocument and XmlDocument](../../../../docs/standard/data/xml/reading-xml-data-using-xpathdocument-and-xmldocument.md)
34-
[Selecting, Evaluating and Matching XML Data using XPathNavigator](../../../../docs/standard/data/xml/selecting-evaluating-and-matching-xml-data-using-xpathnavigator.md)
35-
[Editing XML Data using XPathNavigator](../../../../docs/standard/data/xml/editing-xml-data-using-xpathnavigator.md)
36-
[Schema Validation using XPathNavigator](../../../../docs/standard/data/xml/schema-validation-using-xpathnavigator.md)
28+
## See also
29+
30+
- <xref:System.Xml.XmlDocument>
31+
- <xref:System.Xml.XPath.XPathDocument>
32+
- <xref:System.Xml.XPath.XPathNavigator>
33+
- [Process XML Data Using the XPath Data Model](../../../../docs/standard/data/xml/process-xml-data-using-the-xpath-data-model.md)
34+
- [Reading XML Data using XPathDocument and XmlDocument](../../../../docs/standard/data/xml/reading-xml-data-using-xpathdocument-and-xmldocument.md)
35+
- [Selecting, Evaluating and Matching XML Data using XPathNavigator](../../../../docs/standard/data/xml/selecting-evaluating-and-matching-xml-data-using-xpathnavigator.md)
36+
- [Editing XML Data using XPathNavigator](../../../../docs/standard/data/xml/editing-xml-data-using-xpathnavigator.md)
37+
- [Schema Validation using XPathNavigator](../../../../docs/standard/data/xml/schema-validation-using-xpathnavigator.md)

docs/standard/data/xml/attribute-and-namespace-node-navigation-using-xpathnavigator.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,12 @@ The <xref:System.Xml.XPath.XPathNavigator> class provides two sets of navigation
9090
> [!NOTE]
9191
> The <xref:System.Xml.XPath.XPathNavigator> class returns namespace nodes in reverse document order. Therefore, <xref:System.Xml.XPath.XPathNavigator.MoveToFirstNamespace%2A> essentially moves to the last namespace node in the current scope.
9292
93-
## See Also
94-
<xref:System.Xml.XmlDocument>
95-
<xref:System.Xml.XPath.XPathDocument>
96-
<xref:System.Xml.XPath.XPathNavigator>
97-
[Process XML Data Using the XPath Data Model](../../../../docs/standard/data/xml/process-xml-data-using-the-xpath-data-model.md)
98-
[Node Set Navigation Using XPathNavigator](../../../../docs/standard/data/xml/node-set-navigation-using-xpathnavigator.md)
99-
[Extract XML Data Using XPathNavigator](../../../../docs/standard/data/xml/extract-xml-data-using-xpathnavigator.md)
100-
[Accessing Strongly Typed XML Data Using XPathNavigator](../../../../docs/standard/data/xml/accessing-strongly-typed-xml-data-using-xpathnavigator.md)
93+
## See also
94+
95+
- <xref:System.Xml.XmlDocument>
96+
- <xref:System.Xml.XPath.XPathDocument>
97+
- <xref:System.Xml.XPath.XPathNavigator>
98+
- [Process XML Data Using the XPath Data Model](../../../../docs/standard/data/xml/process-xml-data-using-the-xpath-data-model.md)
99+
- [Node Set Navigation Using XPathNavigator](../../../../docs/standard/data/xml/node-set-navigation-using-xpathnavigator.md)
100+
- [Extract XML Data Using XPathNavigator](../../../../docs/standard/data/xml/extract-xml-data-using-xpathnavigator.md)
101+
- [Accessing Strongly Typed XML Data Using XPathNavigator](../../../../docs/standard/data/xml/accessing-strongly-typed-xml-data-using-xpathnavigator.md)

docs/standard/data/xml/building-xml-schemas.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,12 @@ The classes in the <xref:System.Xml.Schema?displayProperty=nameWithType> namespa
8282
</xs:schema>
8383
```
8484

85-
## See Also
86-
[XML Schema Object Model Overview](../../../../docs/standard/data/xml/xml-schema-object-model-overview.md)
87-
[Reading and Writing XML Schemas](../../../../docs/standard/data/xml/reading-and-writing-xml-schemas.md)
88-
[Traversing XML Schemas](../../../../docs/standard/data/xml/traversing-xml-schemas.md)
89-
[Editing XML Schemas](../../../../docs/standard/data/xml/editing-xml-schemas.md)
90-
[Including or Importing XML Schemas](../../../../docs/standard/data/xml/including-or-importing-xml-schemas.md)
91-
[XmlSchemaSet for Schema Compilation](../../../../docs/standard/data/xml/xmlschemaset-for-schema-compilation.md)
92-
[Post-Schema Compilation Infoset](../../../../docs/standard/data/xml/post-schema-compilation-infoset.md)
85+
## See also
86+
87+
- [XML Schema Object Model Overview](../../../../docs/standard/data/xml/xml-schema-object-model-overview.md)
88+
- [Reading and Writing XML Schemas](../../../../docs/standard/data/xml/reading-and-writing-xml-schemas.md)
89+
- [Traversing XML Schemas](../../../../docs/standard/data/xml/traversing-xml-schemas.md)
90+
- [Editing XML Schemas](../../../../docs/standard/data/xml/editing-xml-schemas.md)
91+
- [Including or Importing XML Schemas](../../../../docs/standard/data/xml/including-or-importing-xml-schemas.md)
92+
- [XmlSchemaSet for Schema Compilation](../../../../docs/standard/data/xml/xmlschemaset-for-schema-compilation.md)
93+
- [Post-Schema Compilation Infoset](../../../../docs/standard/data/xml/post-schema-compilation-infoset.md)

docs/standard/data/xml/changing-namespace-declarations-in-an-xml-document.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@ doc.documentElement.SetAttribute("xmlns","456");
3838

3939
Therefore, changing `xmlns` attributes will have no affect until you save and reload the **XmlDocument** object.
4040

41-
## See Also
42-
[XML Document Object Model (DOM)](../../../../docs/standard/data/xml/xml-document-object-model-dom.md)
41+
## See also
42+
43+
- [XML Document Object Model (DOM)](../../../../docs/standard/data/xml/xml-document-object-model-dom.md)

0 commit comments

Comments
 (0)