Show / Hide Table of Contents

Class ISN_ASAuthorizationAppleIDCredential

A credential that results from a successful Apple ID authentication.

Inheritance
System.Object
ISN_ASAuthorizationAppleIDCredential
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SA.iOS.AuthenticationServices
Assembly: cs.temp.dll.dll
Syntax
public class ISN_ASAuthorizationAppleIDCredential

Properties

AuthorizationCode

A short-lived token used by your app for proof of authorization when interacting with the app’s server counterpart.

Declaration
public byte[] AuthorizationCode { get; }
Property Value
Type Description
System.Byte[]

Email

The user’s email address.

Declaration
public string Email { get; }
Property Value
Type Description
System.String

FullName

The user’s name.

Declaration
public ISN_NSPersonNameComponents FullName { get; }
Property Value
Type Description
ISN_NSPersonNameComponents

IdentityToken

A JSON Web Token (JWT) that securely communicates information about the user to your app.

Declaration
public byte[] IdentityToken { get; }
Property Value
Type Description
System.Byte[]

State

An arbitrary string that your app provided to the request that generated the credential.

Declaration
public string State { get; }
Property Value
Type Description
System.String

User

An identifier associated with the authenticated user.

Declaration
public string User { get; }
Property Value
Type Description
System.String
In This Article
Back to top Generated by DocFX