Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Web.Mvc/FormMethod.cs')
-rw-r--r--src/System.Web.Mvc/FormMethod.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/System.Web.Mvc/FormMethod.cs b/src/System.Web.Mvc/FormMethod.cs
new file mode 100644
index 00000000..5e49bb3b
--- /dev/null
+++ b/src/System.Web.Mvc/FormMethod.cs
@@ -0,0 +1,8 @@
+namespace System.Web.Mvc
+{
+ public enum FormMethod
+ {
+ Get,
+ Post
+ }
+}