mustache.TagDefinition.GetClosingTags C# (CSharp) Method

GetClosingTags() protected method

protected GetClosingTags ( ) : IEnumerable
return IEnumerable
        protected virtual IEnumerable<string> GetClosingTags()
        {
            if (HasContent)
            {
                return new string[] { Name };
            }
            else
            {
                return new string[] { };
            }
        }