尝试从公共 xml 文档的标签中解析数据时,我不断收到以下错误。
XmlException 未处理 无法打开“ http://datastore.unm.edu/events/events.xml ”。Uri 参数必须是指向 Silverlight 应用程序 XAP 包内内容的相对路径。如果您需要从任意 Uri 加载内容,请参阅使用 WebClient/HttpWebRequest 加载 XML 内容的文档。
这是我正在编辑的代码部分:
Dim unmEventXml As XmlReader = XmlReader.Create("http://datastore.unm.edu/events/events.xml", New XmlReaderSettings())
Do While unmEventXml.Read()
If unmEventXml.NodeType = XmlNodeType.Element AndAlso unmEventXml.Name = "summary" Then
Me.Items.Add(New ItemViewModel() With {.LineOne = unmEventXml.Value, .LineTwo = "Maecenas praesent accumsan bibendum", .LineThree = "Facilisi faucibus habitant inceptos interdum lobortis nascetur pharetra placerat pulvinar sagittis senectus sociosqu"})
Else
unmEventXml.Read()
End If