HtmlHelperLabelExtensions.Label 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Label(IHtmlHelper, String) |
返回<指定 |
Label(IHtmlHelper, String, String) |
返回<指定 |
Label(IHtmlHelper, String)
- Source:
- HtmlHelperLabelExtensions.cs
- Source:
- HtmlHelperLabelExtensions.cs
- Source:
- HtmlHelperLabelExtensions.cs
返回<指定 expression
的标签>元素。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ Label(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression);
public static Microsoft.AspNetCore.Html.IHtmlContent Label (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression);
static member Label : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function Label (htmlHelper As IHtmlHelper, expression As String) As IHtmlContent
参数
- htmlHelper
- IHtmlHelper
IHtmlHelper此方法扩展的实例。
- expression
- String
相对于当前模型的表达式名称。
返回
包含 <label> 元素的新 IHtmlContent 。
适用于
Label(IHtmlHelper, String, String)
- Source:
- HtmlHelperLabelExtensions.cs
- Source:
- HtmlHelperLabelExtensions.cs
- Source:
- HtmlHelperLabelExtensions.cs
返回<指定 expression
的标签>元素。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ Label(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::String ^ labelText);
public static Microsoft.AspNetCore.Html.IHtmlContent Label (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, string labelText);
static member Label : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function Label (htmlHelper As IHtmlHelper, expression As String, labelText As String) As IHtmlContent
参数
- htmlHelper
- IHtmlHelper
IHtmlHelper此方法扩展的实例。
- expression
- String
相对于当前模型的表达式名称。
- labelText
- String
元素的内部文本。
返回
包含 <label> 元素的新 IHtmlContent 。