Interface ISN_IASAuthorizationControllerDelegate
An interface for providing information about the outcome of an authorization request.
Namespace: SA.iOS.AuthenticationServices
Assembly: cs.temp.dll.dll
Syntax
public interface ISN_IASAuthorizationControllerDelegate
Methods
DidCompleteWithAuthorization(ISN_ASAuthorizationAppleIDCredential)
Tells the delegate that authorization completed successfully.
Declaration
void DidCompleteWithAuthorization(ISN_ASAuthorizationAppleIDCredential credential)
Parameters
Type | Name | Description |
---|---|---|
ISN_ASAuthorizationAppleIDCredential | credential | Information provided about a user after successful authentication. |
DidCompleteWithError(SA_Error)
Tells the delegate that authorization failed, and provides an error to explain why.
Declaration
void DidCompleteWithError(SA_Error error)
Parameters
Type | Name | Description |
---|---|---|
SA_Error | error | An error that explains why authorization failed using one of the codes in ISN_ASAuthorizationError. |