ClaimsIdentityFactory<TUser> Class

 

Creates a ClaimsIdentity from a User

Namespace:   Microsoft.AspNet.Identity
Assembly:  Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)

Inheritance Hierarchy

System.Object
  Microsoft.AspNet.Identity.ClaimsIdentityFactory<TUser, TKey>
    Microsoft.AspNet.Identity.ClaimsIdentityFactory<TUser>

Syntax

public class ClaimsIdentityFactory<TUser> : ClaimsIdentityFactory<TUser, string>
where TUser : class, IUser<string>
generic<typename TUser>
where TUser : ref class, IUser<String^>
public ref class ClaimsIdentityFactory : ClaimsIdentityFactory<TUser, String^>
type ClaimsIdentityFactory<'TUser when 'TUser : not struct and IUser<string>> = 
    class
        inherit ClaimsIdentityFactory<'TUser, string>
    end
Public Class ClaimsIdentityFactory(Of TUser As { Class, IUser(Of String) })
    Inherits ClaimsIdentityFactory(Of TUser, String)

Type Parameters

  • TUser

Constructors

Name Description
System_CAPS_pubmethod ClaimsIdentityFactory<TUser>()

Constructor

Properties

Name Description
System_CAPS_pubproperty RoleClaimType

Gets or sets the claim type used for role claims.(Inherited from ClaimsIdentityFactory<TUser, TKey>.)

System_CAPS_pubproperty SecurityStampClaimType

Gets or sets the claim type used for the user security stamp.(Inherited from ClaimsIdentityFactory<TUser, TKey>.)

System_CAPS_pubproperty UserIdClaimType

Gets or sets the claim type used for the user identity.(Inherited from ClaimsIdentityFactory<TUser, TKey>.)

System_CAPS_pubproperty UserNameClaimType

Gets or sets the claim type used for the user name.(Inherited from ClaimsIdentityFactory<TUser, TKey>.)

Methods

Name Description
System_CAPS_pubmethod ConvertIdToString(TKey)

Converts the key to a string. By default just calls ToString() method.(Inherited from ClaimsIdentityFactory<TUser, TKey>.)

System_CAPS_pubmethod CreateAsync(UserManager<TUser, TKey>, TUser, String)

Asynchronously creates a ClaimsIdentity from a user.(Inherited from ClaimsIdentityFactory<TUser, TKey>.)

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top