AppAuth
OIDExternalUserAgent.h
Go to the documentation of this file.
1 
19 #import <Foundation/Foundation.h>
20 
23 
24 NS_ASSUME_NONNULL_BEGIN
25 
31 @protocol OIDExternalUserAgent<NSObject>
32 
41 - (BOOL)presentExternalUserAgentRequest:(id<OIDExternalUserAgentRequest> )request
42  session:(id<OIDExternalUserAgentSession>)session;
43 
49 - (void)dismissExternalUserAgentAnimated:(BOOL)animated completion:(void (^)(void))completion;
50 
51 @end
52 
53 NS_ASSUME_NONNULL_END
OIDExternalUserAgentRequest-p
Definition: OIDExternalUserAgentRequest.h:23
OIDExternalUserAgentSession-p
Represents an in-flight external user-agent session.
Definition: OIDExternalUserAgentSession.h:23
OIDExternalUserAgent-p
An external user-agent UI that presents displays the request to the user. Clients may provide custom ...
Definition: OIDExternalUserAgent.h:31