2 implementations of Value
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
688public string Value(string expression, string format)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
1619public string Value(string name, string format)
4 references to Value
Microsoft.AspNetCore.Mvc.ViewFeatures (3)
Rendering\HtmlHelperValueExtensions.cs (3)
31return htmlHelper.Value(expression, format: null); 76return htmlHelper.Value(expression: null, format: null); 101return 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.