iTextSharp.text.html.HtmlPeer.GetAttributes C# (CSharp) Метод

GetAttributes() публичный Метод

public GetAttributes ( Hashtable attrs ) : Properties
attrs System.Collections.Hashtable
Результат System.util.Properties
        public override Properties GetAttributes(Hashtable attrs) {
            Properties attributes = new Properties();
            attributes.AddAll(attributeValues);
            if (defaultContent != null) {
                attributes[ElementTags.ITEXT] = defaultContent;
            }
            if (attrs != null) {
                foreach (string key in attrs.Keys) {
                    attributes.Add(GetName(key).ToLower(CultureInfo.InvariantCulture), (string)attrs[key]);
                }
            }
            return attributes;
        }
    }