驱蚊app
您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 
 
 

29 行
646 B

  1. namespace AppleAuth.Enums
  2. {
  3. /// <summary>
  4. /// ASAuthorizationAppleIDProvider.CredentialState
  5. /// </summary>
  6. public enum CredentialState
  7. {
  8. /// <summary>
  9. /// Authorization for the given user has been revoked
  10. /// </summary>
  11. Revoked = 0,
  12. /// <summary>
  13. /// The user is authorized
  14. /// </summary>
  15. Authorized = 1,
  16. /// <summary>
  17. /// The user can't be found
  18. /// </summary>
  19. NotFound = 2,
  20. /// <summary>
  21. /// ASAuthorizationAppleIDProviderCredentialTransferred
  22. /// </summary>
  23. Transferred = 3,
  24. }
  25. }