Skip to content

Instantly share code, notes, and snippets.

@saasindustries
Created February 23, 2021 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saasindustries/85ecf52f8575630351a07f50ad09b6da to your computer and use it in GitHub Desktop.
Save saasindustries/85ecf52f8575630351a07f50ad09b6da to your computer and use it in GitHub Desktop.
static List<AdDetails> GetAdDetails(List<string> urls){
var lstAdDetails = new List<AdDetails>();
foreach (var url in urls){
var htmlNode = GetHtml(url);
var AdDetails = new AdDetails();
AdDetails.AdTitle = htmlNode.OwnerDocument.DocumentNode.SelectSingleNode("//html/head/title").InnerText;
var description = htmlNode.OwnerDocument.DocumentNode.SelectSingleNode("//html/body/section/section/section/section").InnerText;
AdDetails.AdDescription = description.Replace("\n \n QR Code Link to This Post\n \n \n", "");
AdDetails.AdUrl = url;
lstAdDetails.Add(AdDetails);
}
return lstAdDetails;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment