本文整理汇总了C#中N2.Web.PathData.Clone方法的典型用法代码示例。如果您正苦于以下问题:C# PathData.Clone方法的具体用法?C# PathData.Clone怎么用?C# PathData.Clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类N2.Web.PathData
的用法示例。
在下文中一共展示了PathData.Clone方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Cloned_path_data_should_not_be_same_item
public void Cloned_path_data_should_not_be_same_item()
{
var path = new PathData(page, item);
var clone = path.Clone();
clone.ShouldNotBeSameAs(path);
clone.QueryParameters.ShouldNotBeSameAs(path.QueryParameters);
}
示例2: Cloned_path_data_has_same_values
public void Cloned_path_data_has_same_values()
{
var path = new PathData(page, item) { Action = "hello", Argument = "world", Ignore = true, IsCacheable = false, IsPubliclyAvailable = true, IsRewritable = false, TemplateUrl = "asdf" };
var clone = path.Clone();
path.Action.ShouldBe(clone.Action);
path.Argument.ShouldBe(clone.Argument);
path.CurrentItem.ShouldBe(clone.CurrentItem);
path.CurrentPage.ShouldBe(clone.CurrentPage);
path.ID.ShouldBe(clone.ID);
path.Ignore.ShouldBe(clone.Ignore);
path.IsCacheable.ShouldBe(clone.IsCacheable);
path.IsPubliclyAvailable.ShouldBe(clone.IsPubliclyAvailable);
path.IsRewritable.ShouldBe(clone.IsRewritable);
path.PageID.ShouldBe(clone.PageID);
path.Path.ShouldBe(clone.Path);
path.QueryParameters.Count.ShouldBe(clone.QueryParameters.Count);
path.StopID.ShouldBe(clone.StopID);
path.StopItem.ShouldBe(clone.StopItem);
path.TemplateUrl.ShouldBe(clone.TemplateUrl);
}