Esempio n. 1
0
 public static string HtmlToPlainText(this string htmlString)
 {
     HtmlConvertService h = new HtmlConvertService();
     return h.ConvertFromString(htmlString);
 }
Esempio n. 2
0
 public static List<string> GetAllImageSrcs(this string htmlString)
 {
     HtmlConvertService h = new HtmlConvertService();
     return h.GetAllImageSrcs(htmlString);
 }