I\'m trying to get all the divs that their class contains a certain word:
content1
I'm sure because there're multiple classes in your div, that doesn't work. You can try this instead:
resultContent.DocumentNode.Descendants("div").Where(d => d.Attributes["class"].Value.Contains("hello"));