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