I can use Visual Basic's MSXML2 objects to make an xml file like this:

<root>
<record>
<JobID>126</JobID>
<Session>1</Session>
<WorkStation>LARCHMONT</WorkStation>
<JobSource>dbaexchis\</JobSource>
</record></root>

But how do I use that library to make a file like this:

<root>
<record JobID="126" Session="1" WorkStation="LARCHMONT" JobSource="dbaexchis\">
</record></root>

What I desire, is it considered "attribute-centric"?