コード例 #1
0
        public PageLinkStatus(PageLink id, WikiPage page)
        {
            if (id == null)
                throw new ArgumentNullException("id");

            this.id = id;
            this.page = page;
        }
コード例 #2
0
 public PageLink(WikiPage page)
     : this(NameTools.GetNamespace(page.FullName), NameTools.GetLocalName(page.FullName), null)
 {
 }