1 implementation of PartialAsync
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
445public async Task<IHtmlContent> PartialAsync(
8 references to PartialAsync
Microsoft.AspNetCore.Mvc.ViewFeatures (8)
Rendering\HtmlHelperPartialExtensions.cs (8)
32return htmlHelper.PartialAsync(partialViewName, htmlHelper.ViewData.Model, viewData: null); 55return htmlHelper.PartialAsync(partialViewName, htmlHelper.ViewData.Model, viewData); 78return htmlHelper.PartialAsync(partialViewName, model, viewData: null); 93/// <see cref="IHtmlHelper.PartialAsync(string, object, ViewDataDictionary)"/> 113/// <see cref="IHtmlHelper.PartialAsync(string, object, ViewDataDictionary)"/> 136/// <see cref="IHtmlHelper.PartialAsync(string, object, ViewDataDictionary)"/> 157/// <see cref="IHtmlHelper.PartialAsync(string, object, ViewDataDictionary)"/> 168var result = htmlHelper.PartialAsync(partialViewName, model, viewData);