Procedura: leggere i dati tipizzati senza un mapping dello schema
Nell'esempio seguente viene utilizzato il tipo XmlReader per restituire un oggetto tipizzato. Poiché il formato dell'elemento hire-date segue le regole di W3C per il tipo xs:dateTime, il metodo ReadElementContentAsDateTime è in grado di convertire correttamente l'elemento in un oggetto DateTime, anche se i dati non sono tipizzati.
Esempio
Nell'esempio seguente viene utilizzato il metodo ReadElementContentAsDateTime per restituire l'elemento hire-date come oggetto DateTime.
' Create an XmlReader object.
Using reader As XmlReader = XmlReader.Create("hireDate_1.xml")
' Move to the hire-date element.
reader.MoveToContent()
reader.ReadToDescendant("hire-date")
' Return the hire-date as a DateTime object.
Dim hireDate As DateTime = reader.ReadElementContentAsDateTime()
Console.WriteLine("Six Month Review Date: {0}", hireDate.AddMonths(6))
End Using
// Create an XmlReader object.
using (XmlReader reader = XmlReader.Create("hireDate_1.xml")) {
// Move to the hire-date element.
reader.MoveToContent();
reader.ReadToDescendant("hire-date");
// Return the hire-date as a DateTime object.
DateTime hireDate = reader.ReadElementContentAsDateTime();
Console.WriteLine("Six Month Review Date: {0}", hireDate.AddMonths(6));
}
Input
In questo esempio viene utilizzato il file hireDate_1.xml come input.
hireDate_1.xml
<employee xmlns="urn:empl-hire">
<ID>12365</ID>
<hire-date>2003-01-08T15:00:00-00:00</hire-date>
<title>Accountant</title>
</employee>
Output
Six Month Review Date: 7/8/2003 8:00:00 AM