HtmlHelperInputExtensions.Password Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Password(IHtmlHelper, String) |
Retourne un élément d’entrée <> de type « password » pour le spécifié |
Password(IHtmlHelper, String, Object) |
Retourne un élément d’entrée <> de type « password » pour le spécifié |
Password(IHtmlHelper, String)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Retourne un élément d’entrée <> de type « password » pour le spécifiéexpression
. N’ajoute pas d’attribut « value ».
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
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- expression
- String
Nom de l’expression, par rapport au modèle actuel.
Retours
Nouveau IHtmlContent contenant l’élément d’entrée<>.
Remarques
HtmlFieldPrefix Combine et expression
pour définir <l’attribut « name » de l’élément d’entrée>. Assainit expression
pour définir l’attribut « id » de l’élément. Définit <l’attribut « value » de l’élément d’entrée> sur string.Empty
.
S’applique à
Password(IHtmlHelper, String, Object)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Retourne un élément d’entrée <> de type « password » pour le spécifiéexpression
. Ajoute un attribut « value » contenant le value
paramètre si ce n’est pasnull
le cas.
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
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- expression
- String
Nom de l’expression, par rapport au modèle actuel.
- value
- Object
Si ce n’estnull
pas le cas, valeur à inclure dans l’élément .
Retours
Nouveau IHtmlContent contenant l’élément d’entrée<>.
Remarques
HtmlFieldPrefix Combine et expression
pour définir <l’attribut « name » de l’élément d’entrée>. Assainit expression
pour définir l’attribut « id » de l’élément.