1 implementation of InvokeAsync
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
ViewComponents\DefaultViewComponentHelper.cs (1)
85
public Task<IHtmlContent>
InvokeAsync
(Type componentType, object? arguments)
4 references to InvokeAsync
Microsoft.AspNetCore.Mvc.ViewFeatures (4)
Rendering\ViewComponentHelperExtensions.cs (3)
40
return helper.
InvokeAsync
(componentType, arguments: null);
55
return helper.
InvokeAsync
(typeof(TComponent), arguments);
69
return helper.
InvokeAsync
(typeof(TComponent), arguments: null);
ViewComponentResultExecutor.cs (1)
158
return viewComponentHelper.
InvokeAsync
(result.ViewComponentType, result.Arguments);