// TODO: refactor /// <summary> /// Gets the text representation of descendants of this <see cref="HtmlContainer"/>. /// </summary> public static string GetInnerText(this HtmlContainer container) { container.GuardNotNull(nameof(container)); return(container.GetTextRepresentation()); }