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

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

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.
Результат MenuItem
        public static MenuItem MenuItem(this HtmlHelper helper, string text, string action, string controller=null)
        {
            return new MenuItem(helper, text, action, controller);
        }