Dim hc As New HttpClient("http://www.weather.com.cn/data/alarm_xml/alarminfo.xml")
Dim txt As String = hc.GetData
Dim xmlDoc As New System.XML.XmlDocument
xmlDoc.Loadxml(txt)
Dim ndList = xmlDoc.GetElementsByTagName("Station")
For Each nd As object In ndlist
output.show( nd.Attributes("stationName").value) 'stationName
output.show( nd.Attributes("signalType").value) 'signalType
output.show( nd.Attributes("signalLevel").value) 'signalLevel
output.show( nd.Attributes("issueTime").value) 'issueTime
output.show( nd.Attributes("relieveTime").value) 'relieveTime
output.show( nd.Attributes("issueContent").value) 'issueContent
Next