Я хочу получить все значения атрибута 'id' тега 'span' с помощью пакета html agility.
Но вместо атрибутов я сам получил теги. Вот код
<code> private static IEnumerable<string> GetAllID()
{
HtmlDocument sourceDocument = new HtmlDocument();
sourceDocument.Load(FileName);
var nodes = sourceDocument.DocumentNode.SelectNodes(
@"//span/@id");
return nodes.Nodes().Select(x => x.Name);
}
Буду признателен, если кто-нибудь скажет мне, что здесь не так.