RemoveAttribute() public method

public RemoveAttribute ( [ attributeName ) : void
attributeName [
return void
            public override XmlElement CreateCategoryElement(XmlDocument ownerDoc, string category, string categoryScheme, string categoryLabel)
            {
                // Blogger doesn't support category labels and will error out if you pass them
                XmlElement el = base.CreateCategoryElement(ownerDoc, category, categoryScheme, categoryLabel);

                el.RemoveAttribute("label");
                return(el);
            }