-
-
Notifications
You must be signed in to change notification settings - Fork 828
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
avm2: Implement
flash.net.URLRequestMethod
- Loading branch information
Showing
2 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package flash.net { | ||
public final class URLRequestMethod { | ||
public static const POST: String = "POST"; | ||
public static const GET: String = "GET"; | ||
public static const PUT: String = "PUT"; | ||
public static const DELETE: String = "DELETE"; | ||
public static const HEAD: String = "HEAD"; | ||
public static const OPTIONS: String = "OPTIONS"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters