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

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

Renders a Twitter Bootstrap breadcrumb component.
public static Breadcrumb ( this helper, IEnumerable actionLinks, object htmlAttributes = null ) : System.Web.Mvc.MvcHtmlString
helper this The Html helper.
actionLinks IEnumerable The action links.
htmlAttributes object The HTML attributes.
Результат System.Web.Mvc.MvcHtmlString
        public static MvcHtmlString Breadcrumb(this HtmlHelper helper, IEnumerable<MenuItem> actionLinks, object htmlAttributes=null)
        {
            BreadcrumbHelper breadcrumbHelper = new BreadcrumbHelper(helper, actionLinks, htmlAttributes);
            return new MvcHtmlString(breadcrumbHelper.Render());
        }