HtmlHelperPartialExtensions.PartialAsync 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
PartialAsync(IHtmlHelper, String) |
Returns HTML markup for the specified partial view. |
PartialAsync(IHtmlHelper, String, ViewDataDictionary) |
Returns HTML markup for the specified partial view. |
PartialAsync(IHtmlHelper, String, Object) |
Returns HTML markup for the specified partial view. |
PartialAsync(IHtmlHelper, String)
Returns HTML markup for the specified partial view.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task<Microsoft::AspNetCore::Html::IHtmlContent ^> ^ PartialAsync(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ partialViewName);
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> PartialAsync (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string partialViewName);
static member PartialAsync : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
<Extension()>
Public Function PartialAsync (htmlHelper As IHtmlHelper, partialViewName As String) As Task(Of IHtmlContent)
Parameters
- htmlHelper
- IHtmlHelper
The IHtmlHelper instance this method extends.
- partialViewName
- String
The name or path of the partial view used to create the HTML markup. Must not be null
.
Returns
A Task that on completion returns a new IHtmlContent instance containing the created HTML.
Applies to
PartialAsync(IHtmlHelper, String, ViewDataDictionary)
Returns HTML markup for the specified partial view.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task<Microsoft::AspNetCore::Html::IHtmlContent ^> ^ PartialAsync(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ partialViewName, Microsoft::AspNetCore::Mvc::ViewFeatures::ViewDataDictionary ^ viewData);
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> PartialAsync (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string partialViewName, Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary viewData);
static member PartialAsync : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
<Extension()>
Public Function PartialAsync (htmlHelper As IHtmlHelper, partialViewName As String, viewData As ViewDataDictionary) As Task(Of IHtmlContent)
Parameters
- htmlHelper
- IHtmlHelper
The IHtmlHelper instance this method extends.
- partialViewName
- String
The name or path of the partial view used to create the HTML markup. Must not be null
.
- viewData
- ViewDataDictionary
A ViewDataDictionary to pass into the partial view.
Returns
A Task that on completion returns a new IHtmlContent instance containing the created HTML.
Applies to
PartialAsync(IHtmlHelper, String, Object)
Returns HTML markup for the specified partial view.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task<Microsoft::AspNetCore::Html::IHtmlContent ^> ^ PartialAsync(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ partialViewName, System::Object ^ model);
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> PartialAsync (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string partialViewName, object model);
static member PartialAsync : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
<Extension()>
Public Function PartialAsync (htmlHelper As IHtmlHelper, partialViewName As String, model As Object) As Task(Of IHtmlContent)
Parameters
- htmlHelper
- IHtmlHelper
The IHtmlHelper instance this method extends.
- partialViewName
- String
The name or path of the partial view used to create the HTML markup. Must not be null
.
- model
- Object
A model to pass into the partial view.
Returns
A Task that on completion returns a new IHtmlContent instance containing the created HTML.