1 instantiation of StoreOptions
Microsoft.Extensions.Identity.Core (1)
IdentityOptions.cs (1)
65public StoreOptions Stores { get; set; } = new StoreOptions();
7 references to StoreOptions
Microsoft.AspNetCore.Identity.EntityFrameworkCore (3)
IdentityUserContext.cs (3)
103private StoreOptions? GetStoreOptions() => this.GetService<IDbContextOptions>() 158var storeOptions = GetStoreOptions(); 256var storeOptions = GetStoreOptions();
Microsoft.Extensions.Identity.Core (4)
IdentityOptions.cs (3)
60/// Gets or sets the <see cref="StoreOptions"/> for the identity system. 63/// The <see cref="StoreOptions"/> for the identity system. 65public StoreOptions Stores { get; set; } = new StoreOptions();
IProtectedUserStore.cs (1)
7/// Marker interface used to signal that the store supports the <see cref="StoreOptions.ProtectPersonalData"/> flag.