5 implementations of SetPhoneNumberAsync
Identity.DefaultUI.WebSite (1)
src\Identity\test\InMemory.Test\InMemoryUserStore.cs (1)
279public Task SetPhoneNumberAsync(TUser user, string phoneNumber, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
279public Task SetPhoneNumberAsync(TUser user, string phoneNumber, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.Test (2)
UserManagerTest.cs (2)
1460public Task SetPhoneNumberAsync(PocoUser user, string phoneNumber, CancellationToken cancellationToken = default(CancellationToken)) 1762public Task SetPhoneNumberAsync(PocoUser user, string phoneNumber, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
663public virtual Task SetPhoneNumberAsync(TUser user, string? phoneNumber, CancellationToken cancellationToken = default(CancellationToken))
2 references to SetPhoneNumberAsync
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
1468await store.SetPhoneNumberAsync(user, phoneNumber, CancellationToken).ConfigureAwait(false); 1496await store.SetPhoneNumberAsync(user, phoneNumber, CancellationToken).ConfigureAwait(false);