Entity GetTags Method Delta Engine Documentation

Namespace: DeltaEngine.Entities
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public List<string> GetTags()

Return Value

Type: List String 
Remarks

Tests: DeltaEngine.Tests.Entities.EntityTests
Examples

1 unit tests call DeltaEngine.Entities.Entity.GetTags
[Test]
public void GetTags()
{
    Assert.AreEqual(2, entityWithTags.GetTags().Count);
    Assert.AreEqual(Tag1, entityWithTags.GetTags()[0]);
    Assert.AreEqual(Tag2, entityWithTags.GetTags()[1]);
}
See Also