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

Badge() публичный статический Метод

Renders a Twitter Bootstrap badge component
public static Badge ( this helper, string text, BootstrapStatus status, object htmlAttributes ) : System.Web.Mvc.MvcHtmlString
helper this The html helper.
text string The text.
status BootstrapStatus The status.
htmlAttributes object The HTML attributes.
Результат System.Web.Mvc.MvcHtmlString
        public static MvcHtmlString Badge(this HtmlHelper helper, string text, BootstrapStatus status, object htmlAttributes)
        {
            BadgeHelper badgeHelper = new BadgeHelper(helper, GetStatusStrategy(status), text, status, htmlAttributes);
            return new MvcHtmlString(badgeHelper.Render());
        }