This repository was archived by the owner on Dec 14, 2018. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork2.1k
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
Parameter inIHtmlHelper.TextBox() has an inconsistent parameter name #5394
Closed
Description
Problem introduced in8eb6327 which was (of course) intended to "Make HTML helper parameter names consistent".
TheIHtmlHelper.TextBox() method has the following signature
IHtmlContentTextBox(stringcurrent,objectvalue,stringformat,objecthtmlAttributes);
All other methods in theIHtmlHelper interface useexpression for parameters with the same purpose ascurrent.TextBox() extensions inHtmlHelperInputExtensions also haveexpression parameters.IHtmlHelper.TextBox() is the only oddball.
Can we take the slight breaking change to fix this sooner than 2.0?