Initial support for AIR

This commit is contained in:
Joshua Granick
2017-08-24 12:50:13 -07:00
parent f2a8092834
commit 9991e99fee
186 changed files with 2590 additions and 68 deletions

View File

@@ -0,0 +1,12 @@
package flash.net;
extern class URLRequestDefaults {
static var authenticate : Bool;
static var cacheResponse : Bool;
static var followRedirects : Bool;
static var idleTimeout : Float;
static var manageCookies : Bool;
static var useCache : Bool;
static var userAgent : String;
static function setLoginCredentialsForHost(hostname : String, user : String, password : String) : Dynamic;
}