| | |
| | | FOUNDATION_EXPORT NSString *const FBSDKNonJSONResponseProperty |
| | | NS_SWIFT_NAME(NonJSONResponseProperty); |
| | | |
| | | @class FBSDKGraphRequest; |
| | | @protocol FBSDKGraphRequest; |
| | | @class FBSDKGraphRequestConnection; |
| | | |
| | | /** |
| | |
| | | The completion handler is retained until the block is called upon the |
| | | completion or cancellation of the connection. |
| | | */ |
| | | - (void)addRequest:(FBSDKGraphRequest *)request |
| | | - (void)addRequest:(id<FBSDKGraphRequest>)request |
| | | completionHandler:(FBSDKGraphRequestBlock)handler; |
| | | |
| | | /** |
| | |
| | | completion or cancellation of the connection. This request can be named |
| | | to allow for using the request's response in a subsequent request. |
| | | */ |
| | | - (void)addRequest:(FBSDKGraphRequest *)request |
| | | - (void)addRequest:(id<FBSDKGraphRequest>)request |
| | | batchEntryName:(NSString *)name |
| | | completionHandler:(FBSDKGraphRequestBlock)handler; |
| | | |
| | |
| | | completion or cancellation of the connection. This request can be named |
| | | to allow for using the request's response in a subsequent request. |
| | | */ |
| | | - (void)addRequest:(FBSDKGraphRequest *)request |
| | | - (void)addRequest:(id<FBSDKGraphRequest>)request |
| | | batchParameters:(nullable NSDictionary<NSString *, id> *)batchParameters |
| | | completionHandler:(FBSDKGraphRequestBlock)handler; |
| | | |