Exemple #1
0
 protected internal DomElement()
 {
     _name = CheckName(RequireFactoryGeneratedName(
                           GetType(),
                           (e, t) => e.GetElementName(t)
                           ));
     _attributes = new DomAttributeCollectionApi(this);
 }
Exemple #2
0
 protected internal DomElement(DomName name)
 {
     _name       = CheckName(name);
     _attributes = new DomAttributeCollectionApi(this);
 }