Acme.Northwind.Install.XmlHelper.RemoveAttribute C# (CSharp) Method

RemoveAttribute() public static method

Removes an attribute from a node
public static RemoveAttribute ( XmlElement element, string attributeName ) : void
element XmlElement
attributeName string
return void
		public static void RemoveAttribute(XmlElement element, string attributeName)
		{
			XmlAttribute attribute = null;
			attribute = (XmlAttribute)element.Attributes.GetNamedItem(attributeName);
			element.Attributes.Remove(attribute);
		}