asp.net mvc - How can I provide intellisense in custom MVC html helper? -
i making custom mvc html helper similar in many ways built in actionlink helper. noticed built in actionlink helper has intellisense actionname , controllername parameters find useful. question how can provide intellisense in custom html helper writing has actionname , controllername parameters? here helper:
public static mvchtmlstring iconlink(this htmlhelper helper, string glyphname, string actionname, string controllername, object routevalues, object htmlattributes) { // implementation }
is there attribute of sort can use make intellisense apply parameters? missing?
here video of intellisense displaying available controller actions actionname parameter: http://screencast.com/t/xwtabynp
Comments
Post a Comment