XmlDataTests UpdateNonExistingAttribute Method Delta Engine Documentation

Namespace: DeltaEngine.Content.Xml.Tests
Assembly: DeltaEngine.Content.Xml.Tests (in DeltaEngine.Content.Xml.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void UpdateNonExistingAttribute()
Examples

[Test]
public void UpdateNonExistingAttribute()
{
    var root = new XmlData("root");
    root.UpdateAttribute("number", "312");
    Assert.AreEqual("312", root.GetAttributeValue("number"));
}
See Also