如何在 xmltextreader 中使用阅读器返回的 XML?
' Create the web request
request = DirectCast(WebRequest.Create("https://mobilevikings.com/api/1.0/rest/mobilevikings/sim_balance.xml"), HttpWebRequest)
' Add authentication to request
request.Credentials = New NetworkCredential("username", "password")
' Get response
response = DirectCast(request.GetResponse(), HttpWebResponse)
' Get the response stream into a reader
reader = New StreamReader(response.GetResponseStream())
在此先感谢,
内森。