window.runtime propertywindow.runtime.flash.net.URLRequestMethod
Runtime Versions:  1.0

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

URLRequest
URLVariables


Constants
 ConstantDefined By
  DELETE : String = "DELETE"
[static] Specifies that the URLRequest object is a DELETE.
URLRequestMethod
  GET : String = "GET"
[static] Specifies that the URLRequest object is a GET.
URLRequestMethod
  HEAD : String = "HEAD"
[static] Specifies that the URLRequest object is a HEAD.
URLRequestMethod
  OPTIONS : String = "OPTIONS"
[static] Specifies that the URLRequest object is a OPTIONS.
URLRequestMethod
  POST : String = "POST"
[static] Specifies that the URLRequest object is a POST.
URLRequestMethod
  PUT : String = "PUT"
[static] Specifies that the URLRequest object is a PUT.
URLRequestMethod
Constant Detail
DELETEConstant
static const DELETE:String = "DELETE"
Runtime Versions:  1.0

Specifies that the URLRequest object is a DELETE.

GETConstant 
static const GET:String = "GET"
Runtime Versions:  1.0

Specifies that the URLRequest object is a GET.

HEADConstant 
static const HEAD:String = "HEAD"
Runtime Versions:  1.0

Specifies that the URLRequest object is a HEAD.

OPTIONSConstant 
static const OPTIONS:String = "OPTIONS"
Runtime Versions:  1.0

Specifies that the URLRequest object is a OPTIONS.

POSTConstant 
static const POST:String = "POST"
Runtime Versions:  1.0

Specifies that the URLRequest object is a POST.

Note: 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.

PUTConstant 
static const PUT:String = "PUT"
Runtime Versions:  1.0

Specifies that the URLRequest object is a PUT.