コード例 #1
0
ファイル: DomElement.cs プロジェクト: Carbonfrost/f-web-dom
 protected internal DomElement()
 {
     _name = CheckName(RequireFactoryGeneratedName(
                           GetType(),
                           (e, t) => e.GetElementName(t)
                           ));
     _attributes = new DomAttributeCollectionApi(this);
 }
コード例 #2
0
ファイル: DomElement.cs プロジェクト: Carbonfrost/f-web-dom
 protected internal DomElement(DomName name)
 {
     _name       = CheckName(name);
     _attributes = new DomAttributeCollectionApi(this);
 }