The URLRequestMethod class provides values that specify whether the
URLRequest object should use the POST
method or the
GET
method when sending data to a server.
See also:
Variables
@:value(cast "DELETE")@:impl@:enuminlineread onlyDELETE:URLRequestMethod = "DELETE"
Specifies that the URLRequest object is a DELETE
.
@:value(cast "GET")@:impl@:enuminlineread onlyGET:URLRequestMethod = "GET"
Specifies that the URLRequest object is a GET
.
@:value(cast "HEAD")@:impl@:enuminlineread onlyHEAD:URLRequestMethod = "HEAD"
Specifies that the URLRequest object is a HEAD
.
@:value(cast "OPTIONS")@:impl@:enuminlineread onlyOPTIONS:URLRequestMethod = "OPTIONS"
Specifies that the URLRequest object is OPTIONS
.
@:value(cast "POST")@:impl@:enuminlineread onlyPOST:URLRequestMethod = "POST"
Specifies that the URLRequest object is a POST
.
Note: For content running in Adobe AIR, when using the
navigateToURL()
function, the runtime treats a URLRequest
that uses the POST method (one that has its method
property
set to URLRequestMethod.POST
) as using the GET method.
@:value(cast "PUT")@:impl@:enuminlineread onlyPUT:URLRequestMethod = "PUT"
Specifies that the URLRequest object is a PUT
.