Data values, which are normally expressed as attributes in XML, may be represented as elements with text nodes.
When AttributesAsElements="True", values are contained in elements, for example:
<Root> <Order> <OrderID>12345</ID <Freight>1.12</Freight> </Order> <Root>
The default is "False", outputting data as attributes.
<Root> <Order OrderID="12345" Freight="1.12" /> <Root> |