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

IUnvalidatedRequestValues.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f5c67bc44de6607578f8e5d23669b40837fe312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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; }
    }
}