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

IUnvalidatedValueProvider.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91882c3a8fab5c1b83e60dd14f35536dce124061 (plain)
1
2
3
4
5
6
7
8
namespace System.Web.Mvc
{
    // Represents a special IValueProvider that has the ability to skip request validation.
    public interface IUnvalidatedValueProvider : IValueProvider
    {
        ValueProviderResult GetValue(string key, bool skipValidation);
    }
}