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