1 implementation of IAntiforgeryTokenStore
Microsoft.AspNetCore.Antiforgery (1)
Internal\DefaultAntiforgeryTokenStore.cs (1)
11internal sealed class DefaultAntiforgeryTokenStore : IAntiforgeryTokenStore
7 references to IAntiforgeryTokenStore
Microsoft.AspNetCore.Antiforgery (3)
AntiforgeryServiceCollectionExtensions.cs (1)
34services.TryAddSingleton<IAntiforgeryTokenStore, DefaultAntiforgeryTokenStore>();
Internal\DefaultAntiforgery.cs (2)
22private readonly IAntiforgeryTokenStore _tokenStore; 29IAntiforgeryTokenStore tokenStore,
Microsoft.AspNetCore.Antiforgery.Test (4)
DefaultAntiforgeryTest.cs (4)
1384IAntiforgeryTokenStore? tokenStore = null) 1430private Mock<IAntiforgeryTokenStore> GetTokenStore( 1437var mockTokenStore = new Mock<IAntiforgeryTokenStore>(MockBehavior.Strict); 1564public Mock<IAntiforgeryTokenStore> TokenStore { get; set; } = default!;