2 implementations of Value
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
688
public string
Value
(string expression, string format)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
1619
public string
Value
(string name, string format)
4 references to Value
Microsoft.AspNetCore.Mvc.ViewFeatures (3)
Rendering\HtmlHelperValueExtensions.cs (3)
31
return htmlHelper.
Value
(expression, format: null);
76
return htmlHelper.
Value
(expression: null, format: null);
101
return htmlHelper.
Value
(expression: null, format: format);
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
Rendering\HtmlHelperValueTest.cs (1)
11
/// Test the <see cref="IHtmlHelper.
Value
" /> and <see cref="IHtmlHelper{TModel}.ValueFor"/> methods.