Skip to content

Commit fc8ef62

Browse files
authored
fixed pipes in tables (dotnet#3163)
1 parent b1d0fe8 commit fc8ef62

File tree

4 files changed

+9
-18
lines changed

4 files changed

+9
-18
lines changed

docs/csharp/programming-guide/concepts/linq/linq-to-xml-for-xpath-users.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
---
22
title: "LINQ to XML for XPath Users (C#)"
3-
ms.custom: ""
43
ms.date: "2015-07-20"
54
ms.prod: .net
6-
ms.reviewer: ""
7-
ms.suite: ""
85
ms.technology:
96
- "devlang-csharp"
10-
117
ms.topic: "article"
128
dev_langs:
139
- "CSharp"
1410
ms.assetid: 91774511-1dca-4f06-ac0b-913746f104fe
1511
caps.latest.revision: 3
1612
author: "BillWagner"
1713
ms.author: "wiwagn"
18-
1914
---
2015
# LINQ to XML for XPath Users (C#)
2116
This set of topics show a number of XPath expressions and their [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)] equivalents.
@@ -36,7 +31,7 @@ This set of topics show a number of XPath expressions and their [!INCLUDE[sqltec
3631
|[How to: Find Elements in a Namespace (XPath-LINQ to XML) (C#)](../../../../csharp/programming-guide/concepts/linq/how-to-find-elements-in-a-namespace-xpath-linq-to-xml.md)|Compares the use of the XPath <xref:System.Xml.XmlNamespaceManager> class with the [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)] <xref:System.Xml.Linq.XName.Namespace%2A> property of the <xref:System.Xml.Linq.XName> class for working with XML namespaces.<br /><br /> The associated XPath expression is:`"./aw:*"`|
3732
|[How to: Find Preceding Siblings (XPath-LINQ to XML) (C#)](../../../../csharp/programming-guide/concepts/linq/how-to-find-preceding-siblings-xpath-linq-to-xml.md)|Compares the XPath `preceding-sibling` axis to the [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)] child <xref:System.Xml.Linq.XNode.ElementsBeforeSelf%2A?displayProperty=fullName> axis.<br /><br /> The associated XPath expression is:`"preceding-sibling::*"`|
3833
|[How to: Find Descendants of a Child Element (XPath-LINQ to XML) (C#)](../../../../csharp/programming-guide/concepts/linq/how-to-find-descendants-of-a-child-element-xpath-linq-to-xml.md)|Compares how to get the descendant elements of a child element with a particular name with XPath and [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:`"./Paragraph//Text/text()"`|
39-
|[How to: Find a Union of Two Location Paths (XPath-LINQ to XML) (C#)](../../../../csharp/programming-guide/concepts/linq/how-to-find-a-union-of-two-location-paths-xpath-linq-to-xml.md)|Compares the use of the union operator, `&#124;`, in XPath with the <xref:System.Linq.Enumerable.Concat%2A> standard query operator in [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:`"//Category&#124;//Price"`|
34+
|[How to: Find a Union of Two Location Paths (XPath-LINQ to XML) (C#)](../../../../csharp/programming-guide/concepts/linq/how-to-find-a-union-of-two-location-paths-xpath-linq-to-xml.md)|Compares the use of the union operator, <code>&#124;</code>, in XPath with the <xref:System.Linq.Enumerable.Concat%2A> standard query operator in [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:<code>"//Category&#124;//Price"</code>|
4035
|[How to: Find Sibling Nodes (XPath-LINQ to XML) (C#)](../../../../csharp/programming-guide/concepts/linq/how-to-find-sibling-nodes-xpath-linq-to-xml.md)|Compares how to find all siblings of a node that have a specific name with XPath and [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:`"../Book"`|
4136
|[How to: Find an Attribute of the Parent (XPath-LINQ to XML) (C#)](../../../../csharp/programming-guide/concepts/linq/how-to-find-an-attribute-of-the-parent-xpath-linq-to-xml.md)|Compares how to navigate to the parent element and find an associated attribute using XPath and [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:`"../@id"`|
4237
|[How to: Find Attributes of Siblings with a Specific Name (XPath-LINQ to XML) (C#)](../../../../csharp/programming-guide/concepts/linq/how-to-find-attributes-of-siblings-with-a-specific-name-xpath-linq-to-xml.md)|Compares how to find specific attributes of the siblings of the context node with XPath and [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:`"``../Book/@id``"`|

docs/framework/tools/ngen-exe-native-image-generator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ ngen /? | /help
8383
|`uninstall` [`assemblyName` &#124; `assemblyPath`] [`scenarios`] [`config`]|Delete the native images of an assembly and its dependencies from the native image cache.<br /><br /> To uninstall a single image and its dependencies, use the same command-line arguments that were used to install the image. **Note:** Starting with the [!INCLUDE[net_v40_long](../../../includes/net-v40-long-md.md)], the action `uninstall` * is no longer supported.|
8484
|`update` [`/queue`]|Update native images that have become invalid.<br /><br /> If `/queue` is specified, the updates are queued for the native image service. Updates are always scheduled at priority 3, so they run when the computer is idle.|
8585
|`display` [`assemblyName` &#124; `assemblyPath`]|Display the state of the native images for an assembly and its dependencies.<br /><br /> If no argument is supplied, everything in the native image cache is displayed.|
86-
|`executeQueuedItems` [`1``&#124;``2``&#124;``3`]<br /><br /> -or-<br /><br /> `eqi` [1&#124;2&#124;3]|Execute queued compilation jobs.<br /><br /> If a priority is specified, compilation jobs with greater or equal priority are executed. If no priority is specified, all queued compilation jobs are executed.|
86+
|`executeQueuedItems` [<code>1&#124;2&#124;3</code>]<br /><br /> -or-<br /><br /> `eqi` [1&#124;2&#124;3]|Execute queued compilation jobs.<br /><br /> If a priority is specified, compilation jobs with greater or equal priority are executed. If no priority is specified, all queued compilation jobs are executed.|
8787
|`queue` {`pause` &#124; `continue` &#124; `status`}|Pause the native image service, allow the paused service to continue, or query the status of the service.|
8888

8989
<a name="ArgumentTable"></a>

docs/framework/wcf/com-service-model-configuration-tool-comsvcconfig-exe.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ ComSvcConfig.exe /install | /uninstall | /list [/application:<ApplicationID | Ap
5353

5454
|Option|Description|
5555
|------------|-----------------|
56-
|`/application:<` *ApplicationID* `&#124;` *ApplicationName* `>`|Specifies the COM+ application to configure.<br /><br /> Short form `/a`.|
57-
|`/contract:<` *ClassID* `&#124;` *ProgID* `&#124; *,` *InterfaceID* `&#124;` *InterfaceName* `&#124; *` `>`|Specifies the COM+ component and interface that will be configured as the contract for the service.<br /><br /> Short form `/c`.<br /><br /> While the wildcard character (*) can be used when you specify the component and interface names, we recommend that you do not use it, because you might expose interfaces that you did not intend to.|
58-
|`/hosting:<` *complus* `&#124;` *was* `>`|Specifies whether to use the COM+ hosting mode or the Web hosting mode.<br /><br /> Short form `/h`.<br /><br /> Using the COM+ hosting mode requires explicit activation of the COM+ application. Using the Web hosting mode allows the COM+ application to be automatically activated as required. If the COM+ application is a library application, it runs in the Internet Information Services (IIS) process. If the COM+ application is a server application, it runs in the Dllhost.exe process.|
59-
|`/webSite:<` *WebsiteName* `>`|Specifies the Web site for hosting when Web hosting mode is used (see the `/hosting` flag).<br /><br /> Short form `/w`.<br /><br /> If no Web site is specified, the default Web site is used.|
60-
|`/webDirectory:<` *WebDirectoryName* `>`|Specifies the virtual directory for hosting when Web hosting is used (see the `/hosting` flag).<br /><br /> Short form `/d`.|
56+
|`/application:` \<*ApplicationID* &#124; *ApplicationName*\>|Specifies the COM+ application to configure.<br /><br /> Short form `/a`.|
57+
|`/contract:` \<*ClassID* &#124; *ProgID* &#124; \*,*InterfaceID* &#124; *InterfaceName* &#124; \*\>|Specifies the COM+ component and interface that will be configured as the contract for the service.<br /><br /> Short form `/c`.<br /><br /> While the wildcard character (\*) can be used when you specify the component and interface names, we recommend that you do not use it, because you might expose interfaces that you did not intend to.|
58+
|`/hosting:` \<*complus* &#124; *was*\>|Specifies whether to use the COM+ hosting mode or the Web hosting mode.<br /><br /> Short form `/h`.<br /><br /> Using the COM+ hosting mode requires explicit activation of the COM+ application. Using the Web hosting mode allows the COM+ application to be automatically activated as required. If the COM+ application is a library application, it runs in the Internet Information Services (IIS) process. If the COM+ application is a server application, it runs in the Dllhost.exe process.|
59+
|`/webSite:` \<*WebsiteName*\>|Specifies the Web site for hosting when Web hosting mode is used (see the `/hosting` flag).<br /><br /> Short form `/w`.<br /><br /> If no Web site is specified, the default Web site is used.|
60+
|`/webDirectory:` \<*WebDirectoryName*\>|Specifies the virtual directory for hosting when Web hosting is used (see the `/hosting` flag).<br /><br /> Short form `/d`.|
6161
|`/mex`|Adds a Metadata Exchange (MEX) service endpoint to the default service configuration to support clients that want to retrieve a contract definition from the service.<br /><br /> Short form `/x`.|
6262
|`/id`|Displays the application, component, and interface information as IDs.<br /><br /> Short form `/k`.|
6363
|`/nologo`|Prevents ComSvcConfig.exe from displaying its logo.<br /><br /> Short form `/n`.|

docs/visual-basic/programming-guide/concepts/linq/linq-to-xml-for-xpath-users.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
11
---
22
title: "LINQ to XML for XPath Users (Visual Basic)"
3-
ms.custom: ""
43
ms.date: "2015-07-20"
54
ms.prod: .net
6-
ms.reviewer: ""
7-
ms.suite: ""
85
ms.technology:
96
- "devlang-visual-basic"
10-
ms.tgt_pltfrm: ""
117
ms.topic: "article"
128
dev_langs:
139
- "VB"
1410
ms.assetid: 0e64911c-a7cc-4c20-b927-ca99078b5656
1511
caps.latest.revision: 3
1612
author: dotnet-bot
1713
ms.author: dotnetcontent
18-
1914
---
2015
# LINQ to XML for XPath Users (Visual Basic)
16+
2117
This set of topics show a number of XPath expressions and their [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)] equivalents.
2218

2319
All of the examples use the XPath functionality in [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)] that is made available by the extension methods in <xref:System.Xml.XPath.Extensions?displayProperty=fullName>. The examples execute both the XPath expression and the [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)] expression. Each example then compares the results of both queries, validating that the XPath expression is functionally equivalent to the [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)] query. As both types of queries return nodes from the same XML tree, the query result comparison is made using referential identity.
@@ -36,7 +32,7 @@ This set of topics show a number of XPath expressions and their [!INCLUDE[sqltec
3632
|[How to: Find Elements in a Namespace (XPath-LINQ to XML) (Visual Basic)](../../../../visual-basic/programming-guide/concepts/linq/how-to-find-elements-in-a-namespace.md)|Compares the use of the XPath <xref:System.Xml.XmlNamespaceManager> class with the [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)] <xref:System.Xml.Linq.XName.Namespace%2A> property of the <xref:System.Xml.Linq.XName> class for working with XML namespaces.<br /><br /> The associated XPath expression is:`"./aw:*"`|
3733
|[How to: Find Preceding Siblings (XPath-LINQ to XML) (Visual Basic)](../../../../visual-basic/programming-guide/concepts/linq/how-to-find-preceding-siblings-xpath-linq-to-xml.md)|Compares the XPath `preceding-sibling` axis to the [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)] child <xref:System.Xml.Linq.XNode.ElementsBeforeSelf%2A?displayProperty=fullName> axis.<br /><br /> The associated XPath expression is:`"preceding-sibling::*"`|
3834
|[How to: Find Descendants of a Child Element (XPath-LINQ to XML) (Visual Basic)](../../../../visual-basic/programming-guide/concepts/linq/how-to-find-descendants-of-a-child-element-xpath-linq-to-xml.md)|Compares how to get the descendant elements of a child element with a particular name with XPath and [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:`"./Paragraph//Text/text()"`|
39-
|[How to: Find a Union of Two Location Paths (XPath-LINQ to XML) (Visual Basic)](../../../../visual-basic/programming-guide/concepts/linq/how-to-find-a-union-of-two-location-paths-xpath.md)|Compares the use of the union operator, `&#124;`, in XPath with the <xref:System.Linq.Enumerable.Concat%2A> standard query operator in [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:`"//Category&#124;//Price"`|
35+
|[How to: Find a Union of Two Location Paths (XPath-LINQ to XML) (Visual Basic)](../../../../visual-basic/programming-guide/concepts/linq/how-to-find-a-union-of-two-location-paths-xpath.md)|Compares the use of the union operator, <code>&#124;</code>, in XPath with the <xref:System.Linq.Enumerable.Concat%2A> standard query operator in [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:<code>"//Category&#124;//Price"</code>|
4036
|[How to: Find Sibling Nodes (XPath-LINQ to XML) (Visual Basic)](../../../../visual-basic/programming-guide/concepts/linq/how-to-find-sibling-nodes-xpath-linq-to-xml.md)|Compares how to find all siblings of a node that have a specific name with XPath and [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:`"../Book"`|
4137
|[How to: Find an Attribute of the Parent (XPath-LINQ to XML) (Visual Basic)](../../../../visual-basic/programming-guide/concepts/linq/how-to-find-an-attribute-of-the-parent-xpath-linq-to-xml.md)|Compares how to navigate to the parent element and find an associated attribute using XPath and [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:`"../@id"`|
4238
|[How to: Find Attributes of Siblings with a Specific Name (XPath-LINQ to XML) (Visual Basic)](../../../../visual-basic/programming-guide/concepts/linq/how-to-find-attributes-of-siblings-with-a-specific-name.md)|Compares how to find specific attributes of the siblings of the context node with XPath and [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)].<br /><br /> The associated XPath expression is:`"``../Book/@id``"`|

0 commit comments

Comments
 (0)