BootstrapMvcHelpers.BadgeHelper.BadgeHelper C# (CSharp) Method

BadgeHelper() public method

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.
return 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;
        }