<PackageReference Include="System.ClientModel" Version="1.9.0" />

System.ClientModel.Primitives.GetTokenOptions

public class GetTokenOptions
An interface implemented by auth flow interfaces supporting scopes.
namespace System.ClientModel.Primitives { public class GetTokenOptions { public const string ScopesPropertyName = "scopes"; public const string TokenUrlPropertyName = "tokenUrl"; public const string AuthorizationUrlPropertyName = "authorizationUrl"; public const string RefreshUrlPropertyName = "refreshUrl"; public IReadOnlyDictionary<string, object> Properties { get; } public GetTokenOptions(IReadOnlyDictionary<string, object> properties); } }