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
40 changes: 40 additions & 0 deletions .openpublishing.redirection.json
Original file line number Diff line number Diff line change
Expand Up @@ -1964,6 +1964,26 @@
"redirect_url": "/dotnet/standard/linq/modify-elements-attributes-nodes-xml-tree",
"redirect_document_id": true
},
{
"source_path": "docs/csharp/programming-guide/concepts/linq/how-to-change-the-namespace-for-an-entire-xml-tree.md",
"redirect_url": "/dotnet/standard/linq/change-namespace-entire-xml-tree",
"redirect_document_id": true
},
{
"source_path": "docs/csharp/programming-guide/concepts/linq/maintaining-name-value-pairs.md",
"redirect_url": "/dotnet/standard/linq/maintain-name-value-pairs",
"redirect_document_id": true
},
{
"source_path": "docs/csharp/programming-guide/concepts/linq/performance-of-chained-queries-linq-to-xml.md",
"redirect_url": "/dotnet/standard/linq/performance-chained-queries",
"redirect_document_id": true
},
{
"source_path": "docs/csharp/programming-guide/concepts/linq/removing-elements-attributes-and-nodes-from-an-xml-tree.md",
"redirect_url": "/dotnet/standard/linq/remove-elements-attributes-nodes-xml-tree",
"redirect_document_id": true
},
{
"source_path": "docs/csharp/programming-guide/concepts/threading/how-to-use-a-thread-pool.md",
"redirect_url": "/dotnet/api/system.threading.threadpool.queueuserworkitem"
Expand Down Expand Up @@ -5591,6 +5611,26 @@
"redirect_url": "/dotnet/standard/linq/modify-elements-attributes-nodes-xml-tree",
"redirect_document_id": false
},
{
"source_path": "docs/visual-basic/programming-guide/concepts/linq/how-to-change-the-namespace-for-an-entire-xml-tree.md",
"redirect_url": "/dotnet/standard/linq/change-namespace-entire-xml-tree",
"redirect_document_id": false
},
{
"source_path": "docs/visual-basic/programming-guide/concepts/linq/maintaining-name-value-pairs.md",
"redirect_url": "/dotnet/standard/linq/maintain-name-value-pairs",
"redirect_document_id": false
},
{
"source_path": "docs/visual-basic/programming-guide/concepts/linq/performance-of-chained-queries-linq-to-xml.md",
"redirect_url": "/dotnet/standard/linq/performance-chained-queries",
"redirect_document_id": false
},
{
"source_path": "docs/visual-basic/programming-guide/concepts/linq/removing-elements-attributes-and-nodes-from-an-xml-tree.md",
"redirect_url": "/dotnet/standard/linq/remove-elements-attributes-nodes-xml-tree",
"redirect_document_id": false
},
{
"source_path": "docs/visual-basic/programming-guide/concepts/threading/how-to-use-a-thread-pool.md",
"redirect_url": "/dotnet/api/system.threading.threadpool.queueuserworkitem"
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

6 changes: 3 additions & 3 deletions docs/standard/linq/add-elements-attributes-nodes-xml-tree.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ xmlTree.Add(
where (int)el > 3
select el
);
// Even though Child9 does not exist in srcTree, the following statement will not
// Even though Child9 doesn't exist in srcTree, the following statement won't
// throw an exception, and nothing will be added to xmlTree.
xmlTree.Add(srcTree.Element("Child9"));
Console.WriteLine(xmlTree);
Expand Down Expand Up @@ -83,8 +83,8 @@ xmlTree.Add( _
Where CInt(el) > 3 _
Select el)

' Even though Child9 does not exist in srcTree, the following statement
' will not throw an exception, and nothing will be added to xmlTree.
' Even though Child9 doesn't exist in srcTree, the following statement
' won't throw an exception, and nothing will be added to xmlTree.
xmlTree.Add(srcTree.Element("Child9"))
Console.WriteLine(xmlTree)
```
Expand Down
Loading