BootstrapMvcHelpers.Bootstrap.MenuItem C# (CSharp) Method

MenuItem() public static method

The menu item.
public static MenuItem ( this helper, string text, string action, string controller = null ) : MenuItem
helper this The helper.
text string The text.
action string The action.
controller string The controller.
return MenuItem
        public static MenuItem MenuItem(this HtmlHelper helper, string text, string action, string controller=null)
        {
            return new MenuItem(helper, text, action, controller);
        }