我有一個項目,我需要使用json獲取數據,然後將其放入數據網格中。獲取JSON數據並將其放入變量
這是我得到的數據:
using (WebClient webClient = new WebClient())
{
string email = loginDialog.email;
string password = loginDialog.password;
WebClient http = new WebClient();
http.Headers.Add("Content-Type", "application/json");
http.Headers.Add("OSLC-Core-Version", "2.0");
//Windows login: Email + Password
http.Credentials = new NetworkCredential(email, password);
using(Stream stream = http.OpenRead(stringURL))
{
XmlDocument doc = new XmlDocument();
doc.Load(stream);
string json = JsonConvert.SerializeXmlNode(doc);
//Console.WriteLine(json);
}
}
這裏我得到的JSON數據...如何我現在可以把數據(只是優先級)的變量?
// priority =
// BTQStatus =
// implementationDate =
'var json'包含XML或JSON? – aloisdg
您可以反序列化'JSON' /'XML'。 – Sybren
@aloisdg var json包含XML。 – Purger86