You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|*child axis*|`contact.<phone>`|Gets all `phone` elements that are child elements of the `contact` element.|
24
-
|*attribute axis*|`phone.@type`|Gets all`type`attributes of the `phone` element.|
24
+
|*attribute axis*|`phone.@type`|Gets the`type`attribute of the `phone` element.|
25
25
|*descendant axis*|`contacts...<name>`|Gets all `name` elements of the `contacts` element, regardless of how deep in the hierarchy they occur.|
26
26
|*extension indexer*|`contacts...<name>(0)`|Gets the first `name` element from the sequence.|
27
27
|*value*|`contacts...<name>.Value`|Gets the string representation of the first object in the sequence, or `Nothing` if the sequence is empty.|
28
28
29
-
## In This Section
29
+
## In this section
30
30
31
-
[How to: Access XML Descendant Elements](how-to-access-xml-descendant-elements.md)
31
+
[How to: Access XML Descendant Elements](how-to-access-xml-descendant-elements.md)\
32
32
Shows how to use a descendant axis property to access all XML elements that have a specified name and that are contained under a specified XML element.
33
33
34
-
[How to: Access XML Child Elements](how-to-access-xml-child-elements.md)
34
+
[How to: Access XML Child Elements](how-to-access-xml-child-elements.md)\
35
35
Shows how to use a child axis property to access all XML child elements that have a specified name in an XML element.
36
36
37
-
[How to: Access XML Attributes](how-to-access-xml-attributes.md)
37
+
[How to: Access XML Attributes](how-to-access-xml-attributes.md)\
38
38
Shows how to use an attribute axis property to access all XML attributes that have a specified name in an XML element.
39
39
40
-
[How to: Declare and Use XML Namespace Prefixes](how-to-declare-and-use-xml-namespace-prefixes.md)
40
+
[How to: Declare and Use XML Namespace Prefixes](how-to-declare-and-use-xml-namespace-prefixes.md)\
41
41
Shows how to declare an XML namespace prefix and use it to create and access XML elements.
0 commit comments