HtmlHelperInputExtensions.Password Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Password(IHtmlHelper, String) |
Returns an <input> element of type "password" for the specified |
Password(IHtmlHelper, String, Object) |
Returns an <input> element of type "password" for the specified |
Password(IHtmlHelper, String)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Returns an <input> element of type "password" for the specified expression
. Does
not add a "value" attribute.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ Password(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression);
public static Microsoft.AspNetCore.Html.IHtmlContent Password (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression);
static member Password : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function Password (htmlHelper As IHtmlHelper, expression As String) As IHtmlContent
Parameters
- htmlHelper
- IHtmlHelper
The IHtmlHelper instance this method extends.
- expression
- String
Expression name, relative to the current model.
Returns
A new IHtmlContent containing the <input> element.
Remarks
Combines HtmlFieldPrefix and expression
to set <input> element's "name" attribute. Sanitizes expression
to set element's "id" attribute. Sets <input> element's "value" attribute to string.Empty
.
Applies to
Password(IHtmlHelper, String, Object)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Returns an <input> element of type "password" for the specified expression
. Adds a
"value" attribute containing the value
parameter if that is non-null
.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ Password(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::Object ^ value);
public static Microsoft.AspNetCore.Html.IHtmlContent Password (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, object value);
static member Password : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function Password (htmlHelper As IHtmlHelper, expression As String, value As Object) As IHtmlContent
Parameters
- htmlHelper
- IHtmlHelper
The IHtmlHelper instance this method extends.
- expression
- String
Expression name, relative to the current model.
- value
- Object
If non-null
, value to include in the element.
Returns
A new IHtmlContent containing the <input> element.
Remarks
Combines HtmlFieldPrefix and expression
to set <input> element's "name" attribute. Sanitizes expression
to set element's "id" attribute.