1 implementation of ValueFor
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelperOfT.cs (1)
359public string ValueFor<TResult>(Expression<Func<TModel, TResult>> expression, string format)
2 references to ValueFor
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Rendering\HtmlHelperValueExtensions.cs (1)
56return htmlHelper.ValueFor(expression, format: null);
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
Rendering\HtmlHelperValueTest.cs (1)
11/// Test the <see cref="IHtmlHelper.Value" /> and <see cref="IHtmlHelper{TModel}.ValueFor"/> methods.