32 lines
1.8 KiB
C#
32 lines
1.8 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.AspNetCore.Identity
|
|
{
|
|
/// <summary>
|
|
/// Provides an abstraction for a store which stores a user's security stamp.
|
|
/// </summary>
|
|
/// <typeparam name="TUser">The type encapsulating a user.</typeparam>
|
|
public interface IUserSecurityStampStore<TUser> : IUserStore<TUser> where TUser : class
|
|
{
|
|
/// <summary>
|
|
/// Sets the provided security <paramref name="stamp"/> for the specified <paramref name="user"/>.
|
|
/// </summary>
|
|
/// <param name="user">The user whose security stamp should be set.</param>
|
|
/// <param name="stamp">The security stamp to set.</param>
|
|
/// <param name="cancellationToken">The <see cref="CancellationToken"/> used to propagate notifications that the operation should be canceled.</param>
|
|
/// <returns>The <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
Task SetSecurityStampAsync(TUser user, string stamp, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Get the security stamp for the specified <paramref name="user" />.
|
|
/// </summary>
|
|
/// <param name="user">The user whose security stamp should be set.</param>
|
|
/// <param name="cancellationToken">The <see cref="CancellationToken"/> used to propagate notifications that the operation should be canceled.</param>
|
|
/// <returns>The <see cref="Task"/> that represents the asynchronous operation, containing the security stamp for the specified <paramref name="user"/>.</returns>
|
|
Task<string> GetSecurityStampAsync(TUser user, CancellationToken cancellationToken);
|
|
}
|
|
} |