This is an automated email from the ASF dual-hosted git repository.
pushminakazi pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 3e99bf4 Create URLRequestMethod.as
3e99bf4 is described below
commit 3e99bf49b76d0280c6ae0e51c3dd9158d81102ca
Author: pashminakazi <[email protected]>
AuthorDate: Fri Dec 18 15:37:41 2020 +0500
Create URLRequestMethod.as
---
.../src/main/royale/mx/net/URLRequestMethod.as | 49 ++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git
a/frameworks/projects/MXRoyale/src/main/royale/mx/net/URLRequestMethod.as
b/frameworks/projects/MXRoyale/src/main/royale/mx/net/URLRequestMethod.as
new file mode 100644
index 0000000..4f05c3b
--- /dev/null
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/net/URLRequestMethod.as
@@ -0,0 +1,49 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor license agreements. See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership.
+// The ASF licenses this file to You under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with
+// the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+
+package mx.net
+{
+
+/**
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Royale 0.9.4
+ */
+public final class URLRequestMethod
+{
+
+ public function URLRequestMethod(){
+ super();
+ }
+
+ public static const POST:String = "POST"
+
+ public static const OPTIONS:String = "OPTIONS"
+
+ public static const HEAD:String = "HEAD"
+
+ public static const GET:String = "GET"
+
+ public static const DELETE:String = "DELETE"
+
+}
+
+}