Microsoft.Identity.Client.Prompt
Structure containing static members that you can use to specify how the interactive overrides
of AcquireTokenAsync in IPublicClientApplication should prompt the user.
namespace Microsoft.Identity.Client
{
public struct Prompt
{
public static readonly Prompt SelectAccount;
public static readonly Prompt ForceLogin;
public static readonly Prompt Consent;
public static readonly Prompt NoPrompt;
public static readonly Prompt Create;
public static readonly Prompt Never;
public static bool operator ==(Prompt x, Prompt y);
public static bool operator !=(Prompt x, Prompt y);
}
}