AppAuth
OIDAuthStateErrorDelegate.h
Go to the documentation of this file.
1 
19 #import <Foundation/Foundation.h>
20 
21 @class OIDAuthState;
22 
23 NS_ASSUME_NONNULL_BEGIN
24 
28 @protocol OIDAuthStateErrorDelegate <NSObject>
29 
45 - (void)authState:(OIDAuthState *)state didEncounterAuthorizationError:(NSError *)error;
46 
47 @optional
48 
58 - (void)authState:(OIDAuthState *)state didEncounterTransientError:(NSError *)error;
59 
60 @end
61 
62 NS_ASSUME_NONNULL_END
OIDAuthStateErrorDelegate-p
Delegate of the OIDAuthState used to monitor errors.
Definition: OIDAuthStateErrorDelegate.h:28
OIDAuthState
A convenience class that retains the auth state between OIDAuthorizationResponses and OIDTokenRespons...
Definition: OIDAuthState.h:54