Example #1
0
 public static string GetContentValue(this HtmlContentObject param, string tag, Func <IEnumerable <HtmlAttribute>, bool> attributePredicate)
 {
     return(param.Content.GetContentValue(tag, attributePredicate));
 }
Example #2
0
 public static string GetAttributeValue(this HtmlContentObject param, string key)
 {
     return(param.Attributes.GetAttributeValue(key));
 }
Example #3
0
 public static string GetContentValue(this HtmlContentObject param)
 {
     return(param.Content.GetContentValue());
 }
Example #4
0
 public static List <HtmlContentObject> FilterByObject(this HtmlContentObject param, string tag, Func <IEnumerable <HtmlAttribute>, bool> attributePredicate)
 {
     return(param.Content.FilterByObject(tag, attributePredicate));
 }