I want to get text into class it like "pos-4275...". Definitely, The html agility pack on universal(not silverlight).
![Image]()
var httpClient = new HttpClient();

var httpClient = new HttpClient();
string strhtml = await httpClient.GetStringAsync("http://");
var htmlDocument = new HtmlDocument();
htmlDocument.LoadHtml(strhtml);
List<SmartThesuarus> arrays = new List<SmartThesuarus>();
var information_content = htmlDocument.GetElementbyId("content");
if (information_content != null)
{
var cdo_cloud = information_content.Descendants("div").Where(x => x.GetAttributeValue("class", "") == "");
if (cdo_cloud != null)
{
foreach (var node in cdo_cloud)
{
}
}
}
return arrays;