XmlDataTests GetAttributeValueAsInteger 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 GetAttributeValueAsInteger()
Examples

[Test]
public void GetAttributeValueAsInteger()
{
    var root = new XmlData("root");
    root.AddAttribute("number", "123");
    Assert.AreEqual(123, root.GetAttributeValue("number", 0));
    Assert.AreEqual("", root.GetAttributeValue("nonexistant", ""));
}
See Also