asp.net core - AutoValidateAntiforgeryTokenAttribute vs AutoValidateAntiforgeryTokenAuthorizationFilter

289 Views Asked by At

In an asp.net core 2.0 project, I found these 2 filters when I plan to add a global filter. Which one should I add?

AutoValidateAntiforgeryTokenAttribute

or

AutoValidateAntiforgeryTokenAuthorizationFilter

what's the difference between them?

    services.AddMvc(options =>
    {
        // Adds global filters.
        options.Filters.Add(/*?????*/);
    });
1

There are 1 best solutions below

0
On

AutoValidateAntiforgeryTokenAuthorizationFilter is the service AutoValidateAntiforgeryTokenAttribute uses to do it's thing. Use the attribute, not the filter.