BootstrapExtensions.Base.Form.Label.LabelAndControl.Warning C# (CSharp) Method

Warning() public method

public Warning ( bool condition = true ) : LabelAndControl
condition bool
return LabelAndControl
        public LabelAndControl Warning(bool condition = true)
        {
            if (condition) HtmlAttributes["class"] = "warning";
            return this;
        }