Home
last modified time | relevance | path

Searched refs:httpMethod (Results 1 – 25 of 26) sorted by relevance

12

/expo/ios/Exponent/Kernel/Api/
H A DEXApiV2Client.h37 httpMethod:(NSString *)httpMethod
H A DEXApiV2Client.m60 + (BOOL)_canSendBodyWithHttpMethod:(NSString *)httpMethod
67 return [httpMethodsWithBody containsObject:httpMethod.uppercaseString];
80 httpMethod:(NSString *)httpMethod
85 if (arguments && ![EXApiV2Client _canSendBodyWithHttpMethod:httpMethod]) {
94 request.HTTPMethod = httpMethod;
97 if (arguments && [EXApiV2Client _canSendBodyWithHttpMethod:httpMethod]) {
/expo/packages/@expo/server/src/vendor/
H A Dnetlify.ts96 method: event.httpMethod,
103 if (event.httpMethod !== 'GET' && event.httpMethod !== 'HEAD' && event.body) {
/expo/packages/@expo/server/build/vendor/
H A Dnetlify.js84 method: event.httpMethod,
90 if (event.httpMethod !== 'GET' && event.httpMethod !== 'HEAD' && event.body) {
/expo/packages/expo-file-system/build/
H A DFileSystem.js245 httpMethod: (options.httpMethod || 'POST').toUpperCase(),
325 const httpMethod = (options?.httpMethod?.toUpperCase() ||
331 httpMethod,
H A DFileSystem.types.d.ts83 httpMethod?: FileSystemAcceptedUploadHttpMethod;
H A DFileSystem.js.map1httpMethod: 'PATCH',\n * uploadType: FileSystem.FileSystemUploadType.BINARY_CONTENT,\n * });…
H A DFileSystem.types.js.map1 …thod.\n * @default FileSystemAcceptedUploadHttpMethod.POST\n */\n httpMethod?: FileSystemAcce…
/expo/packages/expo-file-system/src/
H A DFileSystem.ts307 httpMethod: (options.httpMethod || 'POST').toUpperCase(),
417 const httpMethod = (options?.httpMethod?.toUpperCase() || constant
424 httpMethod,
H A DFileSystem.types.ts91 httpMethod?: FileSystemAcceptedUploadHttpMethod;
/expo/packages/expo-file-system/ios/
H A DFileSystemRecords.swift50 @Field var httpMethod: HttpMethod = .post variable
H A DEXFileSystem.m638 NSString *httpMethod = options[@"httpMethod"];
658 if (!httpMethod) {
664 [request setHTTPMethod:httpMethod];
/expo/packages/expo-dev-menu/ios/
H A DDevMenuDevOptionsDelegate.swift48 request.httpMethod = "PUT" in openJSInspector()
/expo/ios/versioned/sdk49/ExpoInsights/
H A DInsightsModule.swift69 request.httpMethod = "GET" in dispatchEvent()
/expo/packages/expo-insights/ios/
H A DInsightsModule.swift69 request.httpMethod = "GET" in dispatchEvent()
/expo/packages/expo-file-system/android/src/main/java/expo/modules/filesystem/
H A DFileSystemRecords.kt75 val httpMethod: HttpMethod = HttpMethod.POST, constant in expo.modules.filesystem.FileSystemUploadOptions
H A DFileSystemModule.kt872 return options.httpMethod.let { requestBuilder.method(it.value, body).build() } in createUploadRequest()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/filesystem/
H A DFileSystemRecords.kt75 val httpMethod: HttpMethod = HttpMethod.POST, constant in abi49_0_0.expo.modules.filesystem.FileSystemUploadOptions
/expo/ios/Tests/Api/
H A DEXApiV2Tests.m30 httpMethod:@"GET"
50 httpMethod:@"GET"
/expo/packages/expo-modules-core/ios/Swift/DevTools/
H A DCdpNetworkTypes.swift47 self.method = request.httpMethod ?? "GET"
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/Swift/DevTools/
H A DCdpNetworkTypes.swift47 self.method = request.httpMethod ?? "GET"
/expo/ios/versioned/sdk47/EXFileSystem/EXFileSystem/
H A DABI47_0_0EXFileSystem.m639 NSString *httpMethod = options[@"httpMethod"];
659 if (!httpMethod) {
665 [request setHTTPMethod:httpMethod];
/expo/ios/versioned/sdk49/EXFileSystem/EXFileSystem/
H A DABI49_0_0EXFileSystem.m638 NSString *httpMethod = options[@"httpMethod"];
658 if (!httpMethod) {
664 [request setHTTPMethod:httpMethod];
/expo/ios/versioned/sdk48/EXFileSystem/EXFileSystem/
H A DABI48_0_0EXFileSystem.m639 NSString *httpMethod = options[@"httpMethod"];
659 if (!httpMethod) {
665 [request setHTTPMethod:httpMethod];
/expo/docs/pages/versions/v46.0.0/sdk/
H A Dfilesystem.mdx440 httpMethod: 'PATCH',
463 …- **httpMethod (_String_)** -- The request method. Accepts values: 'POST', 'PUT', 'PATCH. Default …

12