CollectionExtensions
A bunch of methods for getting DOM elements on some internal collections.
Determines if the current filter settings include the provided
node.
Gets an element by its ID.
Gets the element with the provided id, if any. Otherwise the
element with the same name is searched.
Gets a list of HTML elements given by their name attribute.
public static IEnumerable<T> GetNodes<T>(this INode parent, bool deep = true, Func<T, bool> predicate = null) where T : INode
Gets the descendants from the provided parent that fulfill the
specified predicate, if any.