BootstrapMvcHelpers.BadgeHelper.BadgeHelper C# (CSharp) Метод

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

Initializes a new instance of the BadgeHelper class.
public BadgeHelper ( HtmlHelper helper, IStatusStrategy strategy, string text, BootstrapStatus status, object htmlAttributes ) : System
helper HtmlHelper The helper.
strategy IStatusStrategy The strategy.
text string The text.
status BootstrapStatus The status.
htmlAttributes object The HTML attributes.
Результат System
        public BadgeHelper(HtmlHelper helper, IStatusStrategy strategy, string text, BootstrapStatus status, object htmlAttributes)
        {
            this.helper = helper;
            this.strategy = strategy;
            this.status = status;
            this.htmlAttributes = htmlAttributes;
            this.text = text;
        }