コード例 #1
0
        private _HtmlContainerElement(HtmlElementProperties elementProperties, _HtmlContainerElement cloneFrom)
        {
            Must.Assertion
            .AssertArgumentNotNull(elementProperties, nameof(elementProperties));

            _ElementProperties = elementProperties;

            _Annotations = new _HtmlAnnotationCollection(ChildrensProof, this, cloneFrom?._Annotations);
            _Children    = new _HtmlChildNodeCollection(ChildrensProof, this, cloneFrom?._Children);
            _Attributes  = new _HtmlAttributeCollection(ChildrensProof, this, cloneFrom?._Attributes);
        }
コード例 #2
0
 public _HtmlChildNodeCollection(object proof, IHtmlParentNode owner, _HtmlChildNodeCollection cloneFrom)
     : base(proof, owner, cloneFrom)
 {
 }