Microsoft.Identity.Client.DeviceCodeResult
This object is returned as part of the device code flow
and has information intended to be shown to the user about
where to navigate to login and what the device code needs
to be entered on that device.
See https://aka.ms/msal-device-code-flow.
namespace Microsoft.Identity.Client
{
public class DeviceCodeResult
{
public string UserCode { get; }
public string DeviceCode { get; }
public string VerificationUrl { get; }
public DateTimeOffset ExpiresOn { get; }
public long Interval { get; }
public string Message { get; }
public string ClientId { get; }
public IReadOnlyCollection<string> Scopes { get; }
}
}