From e0ec4235cc7b8d05ec1aaa414ec2d2cac798d74e Mon Sep 17 00:00:00 2001 From: lpw Date: Sat, 03 Jun 2023 09:18:20 +0800 Subject: [PATCH] 3.15.0 --- frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h | 38 ++++++++++---------------------------- 1 files changed, 10 insertions(+), 28 deletions(-) diff --git a/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h b/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h index 5876207..6cc4da3 100644 --- a/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h +++ b/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h @@ -28,55 +28,37 @@ NS_SWIFT_NAME(GraphRequestProtocol) @protocol FBSDKGraphRequest -/** - The request parameters. - */ +/// The request parameters. @property (nonatomic, copy) NSDictionary<NSString *, id> *parameters; -/** - The access token string used by the request. - */ +/// The access token string used by the request. @property (nullable, nonatomic, readonly, copy) NSString *tokenString; -/** - The Graph API endpoint to use for the request, for example "me". - */ +/// The Graph API endpoint to use for the request, for example "me". @property (nonatomic, readonly, copy) NSString *graphPath; -/** - The HTTPMethod to use for the request, for example "GET" or "POST". - */ +/// The HTTPMethod to use for the request, for example "GET" or "POST". @property (nonatomic, readonly, copy) FBSDKHTTPMethod HTTPMethod; -/** - The Graph API version to use (e.g., "v2.0") - */ +/// The Graph API version to use (e.g., "v2.0") @property (nonatomic, readonly, copy) NSString *version; -/** - The graph request flags to use - */ +/// The graph request flags to use @property (nonatomic, readonly, assign) FBSDKGraphRequestFlags flags; -/** - Convenience property to determine if graph error recover is disabled - */ +/// Convenience property to determine if graph error recover is disabled @property (nonatomic, getter = isGraphErrorRecoveryDisabled) BOOL graphErrorRecoveryDisabled; -/** - Convenience property to determine if the request has attachments - */ +/// Convenience property to determine if the request has attachments @property (nonatomic, readonly) BOOL hasAttachments; /** - Starts a connection to the Graph API. + Starts a connection to the Graph API. @param completion The handler block to call when the request completes. */ - (id<FBSDKGraphRequestConnecting>)startWithCompletion:(nullable FBSDKGraphRequestCompletion)completion; -/** - A formatted description of the graph request - */ +/// A formatted description of the graph request - (NSString *)formattedDescription; @end -- Gitblit v1.8.0