public static bool IsSection(this WikiNode node, string text) { if (!node.IsSection()) { return(false); } return((node as WikiTextNode).Text == text); }
public static bool IsTextType(this WikiNode node, WikiTextNodeType type) { var textNode = node as WikiTextNode; if (textNode == null) { return(false); } return(textNode.Type == type); }
public static bool IsSection(this WikiNode node) { var textNode = node as WikiTextNode; if (textNode == null) { return(false); } if ((textNode.Type != WikiTextNodeType.Section2) && (textNode.Type != WikiTextNodeType.Section3) && (textNode.Type != WikiTextNodeType.Section4) && (textNode.Type != WikiTextNodeType.Section5)) { return(false); } return(true); }
public static bool IsTextNode(this WikiNode node) { return(node is WikiTextNode); }