System.ClientModel.Primitives.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);
}
}