HtmlHelperValueExtensions.Value(IHtmlHelper, String) 方法

定义

返回指定 expression的格式化值。 具体而言, 返回中找到的第一个非null 值: ModelState 具有全名的条目、具有全名的 ViewData 条目或 expression 针对 Model求值的 。 有关“全名”的详细信息,请参阅 Name(String)

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ Value(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression);
public static string Value (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression);
static member Value : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> string
<Extension()>
Public Function Value (htmlHelper As IHtmlHelper, expression As String) As String

参数

htmlHelper
IHtmlHelper

IHtmlHelper此方法扩展的实例。

expression
String

表达式名称,相对于当前模型。

返回

一个 String 包含格式化值的 。

注解

将表达式结果直接转换为 String

适用于