DataProtectorTokenProvider<TUser, TKey> Class

 

Represents a token provider that uses an IDataProtector to generate encrypted tokens based off of the security stamp.

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

Inheritance Hierarchy

System.Object
  Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider<TUser, TKey>
    Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider<TUser>

Syntax

public class DataProtectorTokenProvider<TUser, TKey> : IUserTokenProvider<TUser, TKey>
where TUser : class, IUser<TKey>
where TKey : object, IEquatable<TKey>
generic<typename TUser, typename TKey>
where TUser : ref class, IUser<TKey>
where TKey : Object, IEquatable<TKey>
public ref class DataProtectorTokenProvider : IUserTokenProvider<TUser, TKey>
type DataProtectorTokenProvider<'TUser, 'TKey when 'TUser : not struct and IUser<'TKey> when 'TKey : Object and IEquatable<'TKey>> = 
    class
        interface IUserTokenProvider<'TUser, 'TKey>
    end
Public Class DataProtectorTokenProvider(Of TUser As { Class, IUser(Of TKey) }, TKey As { Object, IEquatable(Of TKey) })
    Implements IUserTokenProvider(Of TUser, TKey)

Type Parameters

  • TUser
    The type of the user.
  • TKey
    The type of the key.

Constructors

Name Description
System_CAPS_pubmethod DataProtectorTokenProvider<TUser, TKey>(IDataProtector)

Initializes a new instance of the DataProtectorTokenProvider<TUser, TKey> class.

Properties

Name Description
System_CAPS_pubproperty Protector

Gets the IDataProtector for the token.

System_CAPS_pubproperty TokenLifespan

Gets or sets the lifespan after which the token is considered expired.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

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

Asynchronously generates a protected string for a user.

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod IsValidProviderForUserAsync(UserManager<TUser, TKey>, TUser)

Asynchronously determines whether the provider can be used to generate tokens for this user.

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

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

Asynchronously notifies a user.

System_CAPS_pubmethod ToString()

(Inherited from Object.)

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

Asynchronously validates the token.

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.Owin Namespace
ASP.NET Identity

Return to top