UserManager<TUser>.GetEmailAsync(TUser) 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.
Gets the email address for the specified user
.
public:
virtual System::Threading::Tasks::Task<System::String ^> ^ GetEmailAsync(TUser user);
public virtual System.Threading.Tasks.Task<string> GetEmailAsync (TUser user);
public virtual System.Threading.Tasks.Task<string?> GetEmailAsync (TUser user);
abstract member GetEmailAsync : 'User -> System.Threading.Tasks.Task<string>
override this.GetEmailAsync : 'User -> System.Threading.Tasks.Task<string>
Public Overridable Function GetEmailAsync (user As TUser) As Task(Of String)
Parameters
- user
- TUser
The user whose email should be returned.
Returns
The task object containing the results of the asynchronous operation, the email address for the specified user
.