| File: IUserPhoneNumberStore.cs | Web Access |
| Project: src\aspnetcore\src\Identity\Extensions.Core\src\Microsoft.Extensions.Identity.Core.csproj (Microsoft.Extensions.Identity.Core) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Threading; using System.Threading.Tasks; namespace Microsoft.AspNetCore.Identity; /// <summary> /// Provides an abstraction for a store containing users' telephone numbers. /// </summary> /// <typeparam name="TUser">The type encapsulating a user.</typeparam> public interface IUserPhoneNumberStore<TUser> : IUserStore<TUser> where TUser : class { /// <summary> /// Sets the telephone number for the specified <paramref name="user"/>. /// </summary> /// <param name="user">The user whose telephone number should be set.</param> /// <param name="phoneNumber">The telephone number 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 SetPhoneNumberAsync(TUser user, string? phoneNumber, CancellationToken cancellationToken); /// <summary> /// Gets the telephone number, if any, for the specified <paramref name="user"/>. /// </summary> /// <param name="user">The user whose telephone number should be retrieved.</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 user's telephone number, if any.</returns> Task<string?> GetPhoneNumberAsync(TUser user, CancellationToken cancellationToken); /// <summary> /// Gets a flag indicating whether the specified <paramref name="user"/>'s telephone number has been confirmed. /// </summary> /// <param name="user">The user to return a flag for, indicating whether their telephone number is confirmed.</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, returning true if the specified <paramref name="user"/> has a confirmed /// telephone number otherwise false. /// </returns> Task<bool> GetPhoneNumberConfirmedAsync(TUser user, CancellationToken cancellationToken); /// <summary> /// Sets a flag indicating if the specified <paramref name="user"/>'s phone number has been confirmed. /// </summary> /// <param name="user">The user whose telephone number confirmation status should be set.</param> /// <param name="confirmed">A flag indicating whether the user's telephone number has been confirmed.</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 SetPhoneNumberConfirmedAsync(TUser user, bool confirmed, CancellationToken cancellationToken); }