RemoveAll() public method

public RemoveAll ( ) : void
return void
Esempio n. 1
0
 // Removes all attributes from the element.
 public virtual void RemoveAllAttributes()
 {
     if (HasAttributes)
     {
         _attributes.RemoveAll();
     }
 }
Esempio n. 2
0
 public virtual void RemoveAllAttributes()
 {
     if (attributes != null)
     {
         attributes.RemoveAll();
     }
 }