本文介绍了一把umbraco 4.6+ - 如何获得由DOCTYPE在C#中的所有节点?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用一把umbraco 4.6+,有没有办法来检索在C#中的特定文档类型的所有节点?我一直在寻找在 umbraco.NodeFactory
的命名空间,但还没有找到使用的任何东西。
Using Umbraco 4.6+, is there a way to retrieve all nodes of a specific doctype in C#? I've been looking in the umbraco.NodeFactory
namespace, but haven't found anything of use yet.
推荐答案
我只是在做这在今天,类似下面的code应该(用一把umbraco。presentation.nodeFactory)工作,用它打电话-1节点ID来获得该网站的根节点,让它工作,它是一路下滑:
I was just doing this today, something like the below code should work (using umbraco.presentation.nodeFactory), call it with a nodeId of -1 to get the root node of the site and let it work it's way down:
private void DoSomethingWithAllNodesByType(int NodeId, string typeName)
{
var node = new Node(nodeId);
foreach (Node childNode in node.Children)
{
var child = childNode;
if (child.NodeTypeAlias == typeName)
{
//Do something
}
if (child.Children.Count > 0)
GetAllNodesByType(child, typeName);
}
}
这篇关于一把umbraco 4.6+ - 如何获得由DOCTYPE在C#中的所有节点?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!