InputExtensions.HiddenFor 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
HiddenFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>) |
Retourne un élément input masqué HTML pour chaque propriété de l'objet qui est représenté par l'expression spécifiée. |
HiddenFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, IDictionary<String,Object>) |
Retourne un élément d’entrée masqué HTML pour chaque propriété de l’objet représenté par l’expression spécifiée, à l’aide des attributs HTML spécifiés. |
HiddenFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, Object) |
Retourne un élément d’entrée masqué HTML pour chaque propriété de l’objet représenté par l’expression spécifiée, à l’aide des attributs HTML spécifiés. |
HiddenFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>)
Retourne un élément input masqué HTML pour chaque propriété de l'objet qui est représenté par l'expression spécifiée.
public static System.Web.Mvc.MvcHtmlString HiddenFor<TModel,TProperty> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TProperty>> expression);
static member HiddenFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Property>> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function HiddenFor(Of TModel, TProperty) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TProperty))) As MvcHtmlString
Paramètres de type
- TModel
Type du modèle.
- TProperty
Type de la propriété.
Paramètres
- htmlHelper
- HtmlHelper<TModel>
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- expression
- Expression<Func<TModel,TProperty>>
Expression identifiant l'objet qui contient les propriétés à restituer.
Retours
Élément input dont l'attribut type a la valeur « hidden » pour chaque propriété de l'objet qui est représenté par l'expression.
S’applique à
HiddenFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, IDictionary<String,Object>)
Retourne un élément d’entrée masqué HTML pour chaque propriété de l’objet représenté par l’expression spécifiée, à l’aide des attributs HTML spécifiés.
public static System.Web.Mvc.MvcHtmlString HiddenFor<TModel,TProperty> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TProperty>> expression, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member HiddenFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Property>> * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function HiddenFor(Of TModel, TProperty) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TProperty)), htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString
Paramètres de type
- TModel
Type du modèle.
- TProperty
Type de la propriété.
Paramètres
- htmlHelper
- HtmlHelper<TModel>
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- expression
- Expression<Func<TModel,TProperty>>
Expression identifiant l'objet qui contient les propriétés à restituer.
- htmlAttributes
- IDictionary<String,Object>
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément input dont l'attribut type a la valeur « hidden » pour chaque propriété de l'objet qui est représenté par l'expression.
S’applique à
HiddenFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, Object)
Retourne un élément d’entrée masqué HTML pour chaque propriété de l’objet représenté par l’expression spécifiée, à l’aide des attributs HTML spécifiés.
public static System.Web.Mvc.MvcHtmlString HiddenFor<TModel,TProperty> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TProperty>> expression, object htmlAttributes);
static member HiddenFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Property>> * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function HiddenFor(Of TModel, TProperty) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TProperty)), htmlAttributes As Object) As MvcHtmlString
Paramètres de type
- TModel
Type du modèle.
- TProperty
Type de la propriété.
Paramètres
- htmlHelper
- HtmlHelper<TModel>
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- expression
- Expression<Func<TModel,TProperty>>
Expression identifiant l'objet qui contient les propriétés à restituer.
- htmlAttributes
- Object
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément input dont l'attribut type a la valeur « hidden » pour chaque propriété de l'objet qui est représenté par l'expression.