HtmlHelperPartialExtensions.RenderPartial 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
RenderPartial(IHtmlHelper, String) |
Restitue le balisage HTML pour la vue partielle spécifiée. |
RenderPartial(IHtmlHelper, String, ViewDataDictionary) |
Restitue le balisage HTML pour la vue partielle spécifiée. |
RenderPartial(IHtmlHelper, String, Object) |
Restitue le balisage HTML pour la vue partielle spécifiée. |
RenderPartial(IHtmlHelper, String, Object, ViewDataDictionary) |
Restitue le balisage HTML pour la vue partielle spécifiée. |
RenderPartial(IHtmlHelper, String)
Restitue le balisage HTML pour la vue partielle spécifiée.
public:
[System::Runtime::CompilerServices::Extension]
static void RenderPartial(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ partialViewName);
public static void RenderPartial (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string partialViewName);
static member RenderPartial : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> unit
<Extension()>
Public Sub RenderPartial (htmlHelper As IHtmlHelper, partialViewName As String)
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- partialViewName
- String
Nom ou chemin de l’affichage partiel utilisé pour créer le balisage HTML. Ne doit pas être null
.
Remarques
Dans ce contexte, « renders » signifie que la méthode écrit sa sortie à l’aide de Writer.
S’applique à
RenderPartial(IHtmlHelper, String, ViewDataDictionary)
Restitue le balisage HTML pour la vue partielle spécifiée.
public:
[System::Runtime::CompilerServices::Extension]
static void RenderPartial(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ partialViewName, Microsoft::AspNetCore::Mvc::ViewFeatures::ViewDataDictionary ^ viewData);
public static void RenderPartial (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string partialViewName, Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary viewData);
static member RenderPartial : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary -> unit
<Extension()>
Public Sub RenderPartial (htmlHelper As IHtmlHelper, partialViewName As String, viewData As ViewDataDictionary)
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- partialViewName
- String
Nom ou chemin de l’affichage partiel utilisé pour créer le balisage HTML. Ne doit pas être null
.
- viewData
- ViewDataDictionary
ViewDataDictionary à passer dans la vue partielle.
Remarques
Dans ce contexte, « renders » signifie que la méthode écrit sa sortie à l’aide de Writer.
S’applique à
RenderPartial(IHtmlHelper, String, Object)
Restitue le balisage HTML pour la vue partielle spécifiée.
public:
[System::Runtime::CompilerServices::Extension]
static void RenderPartial(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ partialViewName, System::Object ^ model);
public static void RenderPartial (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string partialViewName, object model);
static member RenderPartial : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj -> unit
<Extension()>
Public Sub RenderPartial (htmlHelper As IHtmlHelper, partialViewName As String, model As Object)
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- partialViewName
- String
Nom ou chemin de l’affichage partiel utilisé pour créer le balisage HTML. Ne doit pas être null
.
- model
- Object
Modèle à passer dans la vue partielle.
Remarques
Dans ce contexte, « renders » signifie que la méthode écrit sa sortie à l’aide de Writer.
S’applique à
RenderPartial(IHtmlHelper, String, Object, ViewDataDictionary)
Restitue le balisage HTML pour la vue partielle spécifiée.
public:
[System::Runtime::CompilerServices::Extension]
static void RenderPartial(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ partialViewName, System::Object ^ model, Microsoft::AspNetCore::Mvc::ViewFeatures::ViewDataDictionary ^ viewData);
public static void RenderPartial (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string partialViewName, object model, Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary viewData);
static member RenderPartial : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj * Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary -> unit
<Extension()>
Public Sub RenderPartial (htmlHelper As IHtmlHelper, partialViewName As String, model As Object, viewData As ViewDataDictionary)
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- partialViewName
- String
Nom ou chemin de l’affichage partiel utilisé pour créer le balisage HTML. Ne doit pas être null
.
- model
- Object
Modèle à passer dans la vue partielle.
- viewData
- ViewDataDictionary
ViewDataDictionary à passer dans la vue partielle.
Remarques
Dans ce contexte, « renders » signifie que la méthode écrit sa sortie à l’aide de Writer.