linux-packaging-mono/mcs/class/System.Web.Mvc3/Mvc/UnvalidatedRequestValuesWrapper.cs

29 lines
838 B
C#
Raw Normal View History

namespace System.Web.Mvc {
using System.Collections.Specialized;
using System.Web.Helpers;
// Concrete implementation for the IUnvalidatedRequestValues helper interface
internal sealed class UnvalidatedRequestValuesWrapper : IUnvalidatedRequestValues {
private readonly UnvalidatedRequestValues _unvalidatedValues;
public UnvalidatedRequestValuesWrapper(UnvalidatedRequestValues unvalidatedValues) {
_unvalidatedValues = unvalidatedValues;
}
public NameValueCollection Form {
get { return _unvalidatedValues.Form; }
}
public NameValueCollection QueryString {
get { return _unvalidatedValues.QueryString; }
}
public string this[string key] {
get { return _unvalidatedValues[key]; }
}
}
}