Returned Type:
XmlDocument
Returns an XML Document with the following structure:
<?xml version="1.0" encoding="utf-8" ?>
<furesult>
<message><![CDATA[ OK ]]></message>
<items>
<item>
<id>10</id>
<description><![CDATA[Molinella / Ozzano]]></description>
<autoclosed>null</autoclosed>
<starttime>20101110110816</starttime>
</item>
<item>
<id>12</id>
<description><![CDATA[Molinella / Ferrara]]></description>
<autoclosed>0</autoclosed>
<starttime>20101110093010</starttime>
<endtime>20101110104520</endtime>
</item>
</items>
</furesult>
Where
- <message> contains OK or Error description
- <items> if the command succeeded and <message> contains “OK” this tag is present and contain the list of tracks with the following tags:
- <item> each element of the list. This can be repeated many times
- <id> the Id of the track: it's the only way to identify the track.
- <description> a string containing the track's description given by the user
- <autoclosed> This value can be:
- null – the track is open
- 0 (zero) – the track was closed correctly
- 1 (one) – the track was closed by the server
- <starttime> UCT date and time when the Track has been created in yyyyMMddhhmmss format
- <endtime> UCT date and time when the Track has been closed in yyyyMMddhhmmss format (this value exists only if the track is closed)