BootstrapComponents.Core.HtmlAttributes.HtmlAttributes C# (CSharp) Метод

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

public HtmlAttributes ( object>.IEnumerable htmlAttributes ) : System
htmlAttributes object>.IEnumerable
Результат System
        public HtmlAttributes(IEnumerable<KeyValuePair<string, object>> htmlAttributes)
        {
            if (htmlAttributes == null) return;
            _attributes = htmlAttributes.ToDictionary(x => x.Key, x => new HtmlAttribute(x.Value));
        }

Same methods

HtmlAttributes::HtmlAttributes ( ) : System
HtmlAttributes::HtmlAttributes ( object htmlAttributes ) : System