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/Ajax/InsertionMode.cs')
-rw-r--r--src/System.Web.Mvc/Ajax/InsertionMode.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/System.Web.Mvc/Ajax/InsertionMode.cs b/src/System.Web.Mvc/Ajax/InsertionMode.cs
new file mode 100644
index 00000000..3e0affc9
--- /dev/null
+++ b/src/System.Web.Mvc/Ajax/InsertionMode.cs
@@ -0,0 +1,9 @@
+namespace System.Web.Mvc.Ajax
+{
+ public enum InsertionMode
+ {
+ Replace = 0,
+ InsertBefore = 1,
+ InsertAfter = 2
+ }
+}