Transformer.NET.Token.GetAttribute C# (CSharp) Method

GetAttribute() protected method

protected GetAttribute ( string name ) : string
name string
return string
        protected virtual string GetAttribute(string name)
        {
            //return this.Attributes.ContainsKey(name) ? this.Attributes[name] : null;
            return this.Attributes.ContainsKey(name) ? Utils.HtmlDecode(this.Attributes[name]) : null;
        }