Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/standard/linq/find-default-paragraph-style.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ The default style is: Normal

In the next article in this tutorial you'll create a similar query that finds all the paragraphs in a document and their styles:

- [Retrieve the paragraphs and their styles](retrieve-paragraphs-their-styles.md)
- [Retrieve the paragraphs and their styles](retrieve-paragraphs-styles.md)

## See also

Expand Down
2 changes: 1 addition & 1 deletion docs/standard/linq/find-elements-namespace.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Use namespace prefixes in XPath expressions to find nodes in a particular namesp

## Example: Find purchase orders from a specific namespace in a document that has two namespaces

The following example uses an <xref:System.Xml.XmlReader> to read XML document [Sample XML file: Consolidated purchase orders](sample-xml-file-consolidated-purchase-orders), which has purchase orders in two namespaces. It then gets an <xref:System.Xml.XmlNameTable> from the <xref:System.Xml.XmlReader>, and an <xref:System.Xml.XmlNamespaceManager> from the <xref:System.Xml.XmlNameTable>. It uses the <xref:System.Xml.XmlNamespaceManager> when selecting elements.
The following example uses an <xref:System.Xml.XmlReader> to read XML document [Sample XML file: Consolidated purchase orders](sample-xml-file-consolidated-purchase-orders.md), which has purchase orders in two namespaces. It then gets an <xref:System.Xml.XmlNameTable> from the <xref:System.Xml.XmlReader>, and an <xref:System.Xml.XmlNamespaceManager> from the <xref:System.Xml.XmlNameTable>. It uses the <xref:System.Xml.XmlNamespaceManager> when selecting elements.

The XPath expression is: `./aw:*`

Expand Down
2 changes: 1 addition & 1 deletion docs/standard/linq/find-preceding-siblings.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This article shows how to use <xref:System.Xml.XPath.Extensions.XPathSelectEleme

## Example: Use two methods to find sibling elements that precede an element

The following example finds the `FullAddress` element in XML document [Sample XML file: Customers and orders](sample-xml-file-customers-orders), and retrieves the preceding sibling elements in two different ways. It then compares the results and finds them identical.
The following example finds the `FullAddress` element in XML document [Sample XML file: Customers and orders](sample-xml-file-customers-orders.md), and retrieves the preceding sibling elements in two different ways. It then compares the results and finds them identical.

> [!NOTE]
> Both methods provide results that are in document order.
Expand Down
2 changes: 1 addition & 1 deletion docs/standard/linq/find-text-word-documents.md
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,6 @@ The next section provides details of WordprocessingML documents:

## See also

- [Tutorial: Manipulate content in a WordprocessingML document](xml-shape-wordprocessingml-documents)
- [Tutorial: Manipulate content in a WordprocessingML document](xml-shape-wordprocessingml-documents.md)
- [Refactor using a pure function](refactor-pure-function.md)
- [Deferred execution and lazy evaluation](deferred-execution-lazy-evaluation.md)
2 changes: 1 addition & 1 deletion docs/standard/linq/project-xml-different-shape.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,4 +443,4 @@ The next article in this tutorial shows how to find all the text in a Word docum

## See also

- [Tutorial: Manipulate content in a WordprocessingML document](xml-shape-wordprocessingml-documents)
- [Tutorial: Manipulate content in a WordprocessingML document](xml-shape-wordprocessingml-documents.md)
2 changes: 1 addition & 1 deletion docs/standard/linq/query-xml-trees-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This section of articles provides information, including examples, about LINQ to
|[Projections and transformations](work-dictionaries-linq-xml.md)|Provides common examples of projecting from and transforming XML trees.|
|[Advanced query techniques](join-two-collections.md)|Provides query techniques that are useful in more advanced scenarios.|
|[LINQ to XML for XPath users](comparison-xpath-linq-xml.md)|Presents a number of XPath expressions and their LINQ to XML equivalents.|
|[Pure functional transformations of XML](pure-functional-transformations.md)|Presents a small tutorial on writing queries in the style of functional programming.|
|[Introduction to pure functional transformations](pure-functional-transformations.md)|Presents a small tutorial on writing queries in the style of functional programming.|

## See also

Expand Down
4 changes: 2 additions & 2 deletions docs/standard/linq/stream-xml-fragments-xmlreader.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you want to create a partial tree, you can instantiate an <xref:System.Xml.Xm

The article [How to stream XML fragments with access to header information](stream-xml-fragments-access-header-information.md) contains information on streaming a more complex document.

The article [How to do streaming transform of large XML documents](do-streaming-transform-large-xml-documents.md) contains an example of using LINQ to XML to transform extremely large XML documents while maintaining a small memory footprint.
The article [How to perform streaming transform of large XML documents](perform-streaming-transform-large-xml-documents.md) contains an example of using LINQ to XML to transform extremely large XML documents while maintaining a small memory footprint.

## Example: Create a custom axis method

Expand Down Expand Up @@ -197,4 +197,4 @@ The technique used in this example maintains a small memory footprint even for m

## See also

- [Parse XML](parse-string)
- [Parse XML](parse-string.md)
2 changes: 1 addition & 1 deletion docs/standard/linq/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
- name: Pure functional transformations of XML
items:
- name: Introduction to pure functional transformations
href: introduction-pure-functional-transformations.md
href: pure-functional-transformations.md
- name: Concepts and terminology (functional transformation)
href: concepts-terminology-functional-transformation.md
- name: Functional programming vs. imperative programming
Expand Down