本文整理汇总了C#中N2.Web.PathData.Detach方法的典型用法代码示例。如果您正苦于以下问题:C# PathData.Detach方法的具体用法?C# PathData.Detach怎么用?C# PathData.Detach使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类N2.Web.PathData
的用法示例。
在下文中一共展示了PathData.Detach方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Attached_path_values_doesnt_mutate_original
public void Attached_path_values_doesnt_mutate_original()
{
var path = new PathData { Action = "hej", CurrentItem = item, Ignore = true, IsCacheable = true, IsPubliclyAvailable = true, IsRewritable = true, Path = "/x", StopItem = page, TemplateUrl = "/hello.aspx" };
var detached = path.Detach();
var reattached = detached.Attach(persister);
detached.Action = "hejdå";
detached.CurrentItem = page;
detached.Ignore = false;
detached.IsCacheable = false;
detached.IsPubliclyAvailable = false;
detached.IsRewritable = false;
detached.Path = "/y";
detached.StopItem = item;
detached.TemplateUrl = "/world.aspx";
detached.QueryParameters["Hello"] = "world";
reattached.Action.ShouldNotBe("hejdå");
reattached.CurrentItem.ShouldNotBe(page);
reattached.Ignore.ShouldNotBe(false);
reattached.IsCacheable.ShouldNotBe(false);
reattached.IsPubliclyAvailable.ShouldNotBe(false);
reattached.IsRewritable.ShouldNotBe(false);
reattached.Path.ShouldNotBe("/y");
reattached.StopItem.ShouldNotBe(item);
reattached.TemplateUrl.ShouldNotBe("/world.aspx");
reattached.QueryParameters.ContainsKey("Hello").ShouldBe(false);
}
示例2: Attach_uses_persister_to_load_page
public void Attach_uses_persister_to_load_page()
{
var path = new PathData { CurrentPage = page };
path = path.Detach();
path.CurrentPage.ShouldBe(null);
var loadedPath = path.Attach(persister);
loadedPath.CurrentPage.ID.ShouldBe(1);
}
示例3: Attach_creates_cloned_object
public void Attach_creates_cloned_object()
{
var path = new PathData { Action = "hej", CurrentItem = item, Ignore = true, IsCacheable = true, IsPubliclyAvailable = true, IsRewritable = true, Path = "/x", StopItem = page, TemplateUrl = "/hello.aspx" };
var detached = path.Detach();
var reattached = detached.Attach(persister);
reattached.ShouldNotBeSameAs(detached);
}
示例4: Detach_removes_reference_to_page_but_leaves_id
public void Detach_removes_reference_to_page_but_leaves_id()
{
var path = new PathData { CurrentPage = page };
path = path.Detach();
path.CurrentPage.ShouldBe(null);
path.PageID.ShouldBe(1);
}
示例5: Detach_removes_reference_to_item_but_leaves_id
public void Detach_removes_reference_to_item_but_leaves_id()
{
var path = new PathData { CurrentItem = page };
path = path.Detach();
path.CurrentItem.ShouldBe(null);
path.ID.ShouldBe(1);
}
示例6: Attach_uses_persister_to_load_stop
public void Attach_uses_persister_to_load_stop()
{
var path = new PathData { StopItem = page };
path = path.Detach();
path.StopItem.ShouldBe(null);
var loadedPath = path.Attach(persister);
loadedPath.StopItem.ID.ShouldBe(1);
}
示例7: Detach_creates_cloned_object
public void Detach_creates_cloned_object()
{
var path = new PathData();
var detached = path.Detach();
detached.ShouldNotBeSameAs(path);
}