public static IEnumerable <IContentNode <T> > Ancestors <T>(this IContentNode <T> node) where T : IContent
 {
     return(node.AncestorsInternal());
 }
 public static IEnumerable <IContentNode> Ancestors(this IContentNode node)
 {
     return(node.AncestorsInternal());
 }