Files
2025-09-18 17:55:52 -04:00

20 lines
686 B
Objective-C

//
// RobloxXSRFRequest.h
// RobloxMobile
//
// Created by Ariel Lichtin on 6/25/14.
// Copyright (c) 2014 ROBLOX. All rights reserved.
//
#import "AFHTTPRequestOperationManager.h"
@interface RobloxXSRFRequest : AFHTTPRequestOperationManager
/* XSRF Protection: Post a message that modifies the state of the server using the safety ROBLOX token */
- (AFHTTPRequestOperation *)XSRFPOST:(NSString *)URLString
parameters:(id)parameters
success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure;
@end