HtmlHelperValueExtensions.Value(IHtmlHelper, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回指定 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 。