aspnetcore/src/Microsoft.AspNet.Mvc.Core/ViewComponents/IViewComponentInvoker.cs

13 lines
253 B
C#

using System.Threading.Tasks;
namespace Microsoft.AspNet.Mvc
{
public interface IViewComponentInvoker
{
void Invoke([NotNull] ViewComponentContext context);
Task InvokeAsync([NotNull] ViewComponentContext context);
}
}