AutoValidateAntiforgeryTokenAttribute Classe

Definizione

Attributo che causa la convalida dei token antiforgery per tutti i metodi HTTP non sicuri. Un token antiforgery è necessario per i metodi HTTP diversi da GET, HEAD, OPTIONS e TRACE.

public ref class AutoValidateAntiforgeryTokenAttribute : Attribute, Microsoft::AspNetCore::Mvc::Filters::IFilterFactory, Microsoft::AspNetCore::Mvc::Filters::IOrderedFilter
[System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
public class AutoValidateAntiforgeryTokenAttribute : Attribute, Microsoft.AspNetCore.Mvc.Filters.IFilterFactory, Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter
[<System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Method, AllowMultiple=false, Inherited=true)>]
type AutoValidateAntiforgeryTokenAttribute = class
    inherit Attribute
    interface IFilterFactory
    interface IFilterMetadata
    interface IOrderedFilter
Public Class AutoValidateAntiforgeryTokenAttribute
Inherits Attribute
Implements IFilterFactory, IOrderedFilter
Ereditarietà
AutoValidateAntiforgeryTokenAttribute
Attributi
Implementazioni

Commenti

AutoValidateAntiforgeryTokenAttribute può essere applicato come filtro globale per attivare la convalida dei token antiforgery per impostazione predefinita per un'applicazione. Usare IgnoreAntiforgeryTokenAttribute per eliminare la convalida del token antiforgery per un controller o un'azione.

Costruttori

AutoValidateAntiforgeryTokenAttribute()

Attributo che causa la convalida dei token antiforgery per tutti i metodi HTTP non sicuri. Un token antiforgery è necessario per i metodi HTTP diversi da GET, HEAD, OPTIONS e TRACE.

Proprietà

IsReusable

Ottiene un valore che indica se il risultato di CreateInstance(IServiceProvider) può essere riutilizzato tra le richieste.

Order

Ottiene il valore dell'ordine per determinare l'ordine di esecuzione dei filtri. I filtri vengono eseguiti in un valore numerico crescente della Order proprietà .

Metodi

CreateInstance(IServiceProvider)

Crea un'istanza del filtro eseguibile.

Si applica a