HtmlHelperPartialExtensions.RenderPartialAsync 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
RenderPartialAsync(IHtmlHelper, String) |
Restitue le balisage HTML pour la vue partielle spécifiée. |
RenderPartialAsync(IHtmlHelper, String, ViewDataDictionary) |
Restitue le balisage HTML pour la vue partielle spécifiée. |
RenderPartialAsync(IHtmlHelper, String, Object) |
Restitue le balisage HTML pour la vue partielle spécifiée. |
RenderPartialAsync(IHtmlHelper, String)
Restitue le balisage HTML pour la vue partielle spécifiée.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task ^ RenderPartialAsync(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ partialViewName);
public static System.Threading.Tasks.Task RenderPartialAsync (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string partialViewName);
static member RenderPartialAsync : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> System.Threading.Tasks.Task
<Extension()>
Public Function RenderPartialAsync (htmlHelper As IHtmlHelper, partialViewName As String) As Task
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
.
Retours
Task qui restitue le code HTML créé lors de son exécution.
Remarques
Dans ce contexte, « renders » signifie que la méthode écrit sa sortie à l’aide de Writer.
S’applique à
RenderPartialAsync(IHtmlHelper, String, ViewDataDictionary)
Restitue le balisage HTML pour la vue partielle spécifiée.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task ^ RenderPartialAsync(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ partialViewName, Microsoft::AspNetCore::Mvc::ViewFeatures::ViewDataDictionary ^ viewData);
public static System.Threading.Tasks.Task RenderPartialAsync (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string partialViewName, Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary viewData);
static member RenderPartialAsync : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary -> System.Threading.Tasks.Task
<Extension()>
Public Function RenderPartialAsync (htmlHelper As IHtmlHelper, partialViewName As String, viewData As ViewDataDictionary) As Task
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.
Retours
Task qui restitue le code HTML créé lors de son exécution.
Remarques
Dans ce contexte, « renders » signifie que la méthode écrit sa sortie à l’aide de Writer.
S’applique à
RenderPartialAsync(IHtmlHelper, String, Object)
Restitue le balisage HTML pour la vue partielle spécifiée.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task ^ RenderPartialAsync(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ partialViewName, System::Object ^ model);
public static System.Threading.Tasks.Task RenderPartialAsync (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string partialViewName, object model);
static member RenderPartialAsync : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj -> System.Threading.Tasks.Task
<Extension()>
Public Function RenderPartialAsync (htmlHelper As IHtmlHelper, partialViewName As String, model As Object) As Task
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.
Retours
Task qui restitue le code HTML créé lors de son exécution.
Remarques
Dans ce contexte, « renders » signifie que la méthode écrit sa sortie à l’aide de Writer.