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

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

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