Пример #1
0
        private _HtmlSite(HtmlSiteProperties siteProperties, _HtmlSite cloneFrom)
        {
            Must.Assertion
            .AssertArgumentNotNull(siteProperties, nameof(siteProperties));

            _SiteProperties = siteProperties;

            _Annotations = new _HtmlAnnotationCollection(ChildrensProof, this, cloneFrom?._Annotations);
            _Resources   = new _HtmlResourceNodeCollection(ChildrensProof, this, cloneFrom?._Resources);
        }
Пример #2
0
 public _HtmlResourceNodeCollection(object proof, IHtmlSite owner, _HtmlResourceNodeCollection cloneFrom)
     : base(proof, owner, cloneFrom)
 {
 }