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/IUnvalidatedRequestValues.cs')
-rw-r--r--src/System.Web.Mvc/IUnvalidatedRequestValues.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/System.Web.Mvc/IUnvalidatedRequestValues.cs b/src/System.Web.Mvc/IUnvalidatedRequestValues.cs
new file mode 100644
index 00000000..1f5c67bc
--- /dev/null
+++ b/src/System.Web.Mvc/IUnvalidatedRequestValues.cs
@@ -0,0 +1,13 @@
+using System.Collections.Specialized;
+
+namespace System.Web.Mvc
+{
+ // Used for mocking the UnvalidatedRequestValues type in System.Web.WebPages
+
+ internal interface IUnvalidatedRequestValues
+ {
+ NameValueCollection Form { get; }
+ NameValueCollection QueryString { get; }
+ string this[string key] { get; }
+ }
+}