Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the persistence abstraction that the UserManager operates against.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
protected internal IUserStore<TUser, TKey> Store { get; set; }
public protected:
property IUserStore<TUser, TKey>^ Store {
IUserStore<TUser, TKey>^ get();
void set(IUserStore<TUser, TKey>^ value);
}
member Store : IUserStore<'TUser, 'TKey> with get, set
Protected Friend Property Store As IUserStore(Of TUser, TKey)
Property Value
Type: Microsoft.AspNet.Identity.IUserStore<TUser, TKey>
The persistence abstraction that the UserManager operates against.
See Also
UserManager<TUser, TKey> Class
Microsoft.AspNet.Identity Namespace
ASP.NET Identity
Return to top