Inheritance: IHtmlDocument
コード例 #1
0
 public HtmlRootElement(HtmlDocument ownerDoc)
     : base(ownerDoc, 0, 0)
 {
 }
コード例 #2
0
 public ShadowRootElement(HtmlDocument owner, int prefix, int localNameIndex)
     : base(owner, prefix, localNameIndex)
 {
     shadowDoc = new HtmlShadowDocument(owner);
     shadowDoc.SetDomUpdateHandler(owner.DomUpdateHandler);
 }
コード例 #3
0
 public HtmlShadowDocument(HtmlDocument primaryHtmlDoc)
     : base(primaryHtmlDoc.UniqueStringTable)
 {
     //share string table with primary html doc
     this.primaryHtmlDoc = primaryHtmlDoc;
 }
コード例 #4
0
ファイル: HtmlElements.cs プロジェクト: prepare/HTML-Renderer
 public HtmlElement(HtmlDocument owner, int prefix, int localNameIndex)
     : base(owner, prefix, localNameIndex)
 {
 }
コード例 #5
0
 internal HtmlDocumentFragment(HtmlDocument primaryHtmlDoc)
     : base(primaryHtmlDoc.UniqueStringTable)
 {
     //share string table with primary html doc
     this.primaryHtmlDoc = primaryHtmlDoc;
 }