Ghi
Quyền truy cập vào trang này yêu cầu sự cho phép. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Quyền truy cập vào trang này yêu cầu sự cho phép. Bạn có thể thử thay đổi thư mục.
| Value | |
|---|---|
| Rule ID | MVC1006 |
| Fix is breaking or non-breaking | Breaking |
Cause
A tag helper was defined inside a Razor function that executes synchronously
Rule description
Tag Helper execution is asynchronous. When used inside a method or a lambda within a Razor Page, the containing function must also be declared to be async.
Consider the following cshtml file:
void Helper(string controller)
{
<a asp-controller="@controller">Home</a>
}
asp-controller is a tag helper and will trigger this rule.
How to fix violations
Declare the function to be async and Task returning:
async Task Helper(string controller)
{
<a asp-controller="@controller">Home</a>
}
When to suppress warnings
Do not suppress a warning from this rule.
ASP.NET Core