Skip to content

Commit b5829c3

Browse files
jameshkramermairaw
andauthored
38). Add topic files 119 to 122 (#18673)
* 38). Add topic files 119 to 122 * Apply suggestions from code review Co-authored-by: Maira Wenzel <[email protected]> * Update remove-elements-attributes-nodes-xml-tree.md Co-authored-by: Maira Wenzel <[email protected]>
1 parent f605499 commit b5829c3

16 files changed

+466
-604
lines changed

.openpublishing.redirection.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1964,6 +1964,26 @@
19641964
"redirect_url": "/dotnet/standard/linq/modify-elements-attributes-nodes-xml-tree",
19651965
"redirect_document_id": true
19661966
},
1967+
{
1968+
"source_path": "docs/csharp/programming-guide/concepts/linq/how-to-change-the-namespace-for-an-entire-xml-tree.md",
1969+
"redirect_url": "/dotnet/standard/linq/change-namespace-entire-xml-tree",
1970+
"redirect_document_id": true
1971+
},
1972+
{
1973+
"source_path": "docs/csharp/programming-guide/concepts/linq/maintaining-name-value-pairs.md",
1974+
"redirect_url": "/dotnet/standard/linq/maintain-name-value-pairs",
1975+
"redirect_document_id": true
1976+
},
1977+
{
1978+
"source_path": "docs/csharp/programming-guide/concepts/linq/performance-of-chained-queries-linq-to-xml.md",
1979+
"redirect_url": "/dotnet/standard/linq/performance-chained-queries",
1980+
"redirect_document_id": true
1981+
},
1982+
{
1983+
"source_path": "docs/csharp/programming-guide/concepts/linq/removing-elements-attributes-and-nodes-from-an-xml-tree.md",
1984+
"redirect_url": "/dotnet/standard/linq/remove-elements-attributes-nodes-xml-tree",
1985+
"redirect_document_id": true
1986+
},
19671987
{
19681988
"source_path": "docs/csharp/programming-guide/concepts/threading/how-to-use-a-thread-pool.md",
19691989
"redirect_url": "/dotnet/api/system.threading.threadpool.queueuserworkitem"
@@ -5591,6 +5611,26 @@
55915611
"redirect_url": "/dotnet/standard/linq/modify-elements-attributes-nodes-xml-tree",
55925612
"redirect_document_id": false
55935613
},
5614+
{
5615+
"source_path": "docs/visual-basic/programming-guide/concepts/linq/how-to-change-the-namespace-for-an-entire-xml-tree.md",
5616+
"redirect_url": "/dotnet/standard/linq/change-namespace-entire-xml-tree",
5617+
"redirect_document_id": false
5618+
},
5619+
{
5620+
"source_path": "docs/visual-basic/programming-guide/concepts/linq/maintaining-name-value-pairs.md",
5621+
"redirect_url": "/dotnet/standard/linq/maintain-name-value-pairs",
5622+
"redirect_document_id": false
5623+
},
5624+
{
5625+
"source_path": "docs/visual-basic/programming-guide/concepts/linq/performance-of-chained-queries-linq-to-xml.md",
5626+
"redirect_url": "/dotnet/standard/linq/performance-chained-queries",
5627+
"redirect_document_id": false
5628+
},
5629+
{
5630+
"source_path": "docs/visual-basic/programming-guide/concepts/linq/removing-elements-attributes-and-nodes-from-an-xml-tree.md",
5631+
"redirect_url": "/dotnet/standard/linq/remove-elements-attributes-nodes-xml-tree",
5632+
"redirect_document_id": false
5633+
},
55945634
{
55955635
"source_path": "docs/visual-basic/programming-guide/concepts/threading/how-to-use-a-thread-pool.md",
55965636
"redirect_url": "/dotnet/api/system.threading.threadpool.queueuserworkitem"

docs/csharp/programming-guide/concepts/linq/how-to-change-the-namespace-for-an-entire-xml-tree.md

Lines changed: 0 additions & 72 deletions
This file was deleted.

docs/csharp/programming-guide/concepts/linq/maintaining-name-value-pairs.md

Lines changed: 0 additions & 119 deletions
This file was deleted.

docs/csharp/programming-guide/concepts/linq/removing-elements-attributes-and-nodes-from-an-xml-tree.md

Lines changed: 0 additions & 76 deletions
This file was deleted.

docs/standard/linq/add-elements-attributes-nodes-xml-tree.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ xmlTree.Add(
5353
where (int)el > 3
5454
select el
5555
);
56-
// Even though Child9 does not exist in srcTree, the following statement will not
56+
// Even though Child9 doesn't exist in srcTree, the following statement won't
5757
// throw an exception, and nothing will be added to xmlTree.
5858
xmlTree.Add(srcTree.Element("Child9"));
5959
Console.WriteLine(xmlTree);
@@ -83,8 +83,8 @@ xmlTree.Add( _
8383
Where CInt(el) > 3 _
8484
Select el)
8585

86-
' Even though Child9 does not exist in srcTree, the following statement
87-
' will not throw an exception, and nothing will be added to xmlTree.
86+
' Even though Child9 doesn't exist in srcTree, the following statement
87+
' won't throw an exception, and nothing will be added to xmlTree.
8888
xmlTree.Add(srcTree.Element("Child9"))
8989
Console.WriteLine(xmlTree)
9090
```

0 commit comments

Comments
 (0)