namespace Microsoft.AspNet.Mvc.Rendering
{
///
/// Name-related extensions for and .
///
public static class HtmlHelperNameExtensions
{
///
/// Gets the full HTML field name for the current model.
///
/// The instance that this method extends.
/// An that represents HTML markup.
public static HtmlString NameForModel([NotNull] this IHtmlHelper htmlHelper)
{
return htmlHelper.Name(string.Empty);
}
}
}