IUserStore<TUser>.FindByNameAsync(String, CancellationToken) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Finds and returns a user, if any, who has the specified normalized user name.
public:
System::Threading::Tasks::Task<TUser> ^ FindByNameAsync(System::String ^ normalizedUserName, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<TUser> FindByNameAsync (string normalizedUserName, System.Threading.CancellationToken cancellationToken);
public System.Threading.Tasks.Task<TUser?> FindByNameAsync (string normalizedUserName, System.Threading.CancellationToken cancellationToken);
abstract member FindByNameAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'User (requires 'User : null)>
Public Function FindByNameAsync (normalizedUserName As String, cancellationToken As CancellationToken) As Task(Of TUser)
Parameters
- normalizedUserName
- String
The normalized user name to search for.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
Task<TUser>
The Task that represents the asynchronous operation, containing the user matching the specified normalizedUserName
if it exists.