本文整理汇总了C#中System.Web.SiteMapNode.Clone方法的典型用法代码示例。如果您正苦于以下问题:C# SiteMapNode.Clone方法的具体用法?C# SiteMapNode.Clone怎么用?C# SiteMapNode.Clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Web.SiteMapNode
的用法示例。
在下文中一共展示了SiteMapNode.Clone方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Node_Null_Attrib_clone
public void Node_Null_Attrib_clone ()
{
SiteMapNode node = new SiteMapNode (new DummyProvider (), "", "", "", null, null, null, null, null);
SiteMapNode copy = node.Clone ();
Assert.IsNotNull (copy, "Node not created");
Assert.AreEqual (copy, node, "Cloning failed");
}
示例2: ApplyModifierIfExists
// Dev10# 923217 - SiteMapProvider URL Table Invalid Using Cookieless
// Don't keep the modifier inside the links table. Apply the modifier as approriate on demand
private static SiteMapNode ApplyModifierIfExists(SiteMapNode node) {
HttpContext context = HttpContext.Current;
// Do nothing if the modifier doesn't apply
if (node == null || context == null || !context.Response.UsePathModifier) {
return node;
}
// Set Url with the modifier applied
SiteMapNode resultNode = node.Clone();
resultNode.Url = context.Response.ApplyAppPathModifier(node.Url);
return resultNode;
}