Html.AntiForgeryToken() toujours nécessaire?

Est @Html.AntiForgeryToken() encore nécessaires dans ASP.NET .NET4.6 vNext?

La forme des décorations ont changé de

<form asp-controller="Account" 
      asp-action="Login" 
      asp-route-returnurl="@ViewBag.ReturnUrl" 
      method="post" 
      class="form-horizontal" 
      role="form">

De cette

@using (Html.BeginForm("Login", 
                       "Account", 
                       new { ReturnUrl = ViewBag.ReturnUrl }, 
                       FormMethod.Post, 
                       new { @class = "", role = "form" }))

Et ne comprennent plus ce

@Html.AntiForgeryToken()

Les Actions du Contrôleur sont encore marquées avec le ValidateAntiForgeryToken attribut comme prévu mais alors, où, exactement, est-il en venir? Magiquement?

[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Login(LoginViewModel model, string returnUrl = null)

OriginalL'auteur mezmi | 2015-06-20