IClientApplicationBase.GetUser(String) Method

Definition

Caution

Use GetAccountAsync instead and pass IAccount.HomeAccountId.Identifier (See https://aka.ms/msal-net-2-released)

In MSAL 1.x, return a user from its identifier. From MSAL 2.x, use GetAccountsAsync() instead. See https://aka.ms/msal-net-2-released for more details.

[System.Obsolete("Use GetAccountAsync instead and pass IAccount.HomeAccountId.Identifier (See https://aka.ms/msal-net-2-released)", true)]
public Microsoft.Identity.Client.IUser GetUser (string identifier);
[<System.Obsolete("Use GetAccountAsync instead and pass IAccount.HomeAccountId.Identifier (See https://aka.ms/msal-net-2-released)", true)>]
abstract member GetUser : string -> Microsoft.Identity.Client.IUser
Public Function GetUser (identifier As String) As IUser

Parameters

identifier
String

Identifier of the user to retrieve

Returns

the user in the cache with the identifier passed as an argument

Attributes

Applies to