Ejemplo n.º 1
0
        private static void ReadTitle(this XContainer topic, NodeBase node)
        {
            var title = topic.ElementValue(Namespaces.Content("title"));

            if (!string.IsNullOrWhiteSpace(title))
            {
                node.ChangeTextTransactional(title);
            }
        }