4 overrides of GetAntiforgeryToken
Microsoft.AspNetCore.Components.Endpoints (1)
src\Components\Shared\src\DefaultAntiforgeryStateProvider.cs (1)
35public override AntiforgeryRequestToken? GetAntiforgeryToken() => _currentToken;
Microsoft.AspNetCore.Components.Server (1)
src\Components\Shared\src\DefaultAntiforgeryStateProvider.cs (1)
35public override AntiforgeryRequestToken? GetAntiforgeryToken() => _currentToken;
Microsoft.AspNetCore.Components.Web (1)
src\Components\Shared\src\DefaultAntiforgeryStateProvider.cs (1)
35public override AntiforgeryRequestToken? GetAntiforgeryToken() => _currentToken;
Microsoft.AspNetCore.Components.WebAssembly (1)
src\Components\Shared\src\DefaultAntiforgeryStateProvider.cs (1)
35public override AntiforgeryRequestToken? GetAntiforgeryToken() => _currentToken;
3 references to GetAntiforgeryToken
Microsoft.AspNetCore.Components.Server (2)
Circuits\CircuitFactory.cs (1)
123_ = antiforgery?.GetAntiforgeryToken();
Circuits\CircuitHost.cs (1)
813_ = antiforgery?.GetAntiforgeryToken();
Microsoft.AspNetCore.Components.Web (1)
Forms\AntiforgeryToken.cs (1)
23_requestToken = Services.GetService<AntiforgeryStateProvider>()?.GetAntiforgeryToken();