UserManager<TUser, TKey>.ClaimsIdentityFactory Property
Gets or sets the factory used to create claims identities from users.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
Public Property ClaimsIdentityFactory As IClaimsIdentityFactory(Of TUser, TKey)
Get
Set
'Usage
Dim instance As UserManager
Dim value As IClaimsIdentityFactory(Of TUser, TKey)
value = instance.ClaimsIdentityFactory
instance.ClaimsIdentityFactory = value
public IClaimsIdentityFactory<TUser, TKey> ClaimsIdentityFactory { get; set; }
public:
property IClaimsIdentityFactory<TUser, TKey>^ ClaimsIdentityFactory {
IClaimsIdentityFactory<TUser, TKey>^ get ();
void set (IClaimsIdentityFactory<TUser, TKey>^ value);
}
member ClaimsIdentityFactory : IClaimsIdentityFactory<'TUser, 'TKey> with get, set
function get ClaimsIdentityFactory () : IClaimsIdentityFactory<TUser, TKey>
function set ClaimsIdentityFactory (value : IClaimsIdentityFactory<TUser, TKey>)
Type: Microsoft.AspNet.Identity.IClaimsIdentityFactory<TUser, TKey>
The factory used to create claims identities from users.
UserManager<TUser, TKey> Class