You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
18
external/referencesource/System.Web/ModelBinding/QueryStringValueProvider.cs
vendored
Normal file
18
external/referencesource/System.Web/ModelBinding/QueryStringValueProvider.cs
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
namespace System.Web.ModelBinding {
|
||||
using System.Globalization;
|
||||
|
||||
public sealed class QueryStringValueProvider : NameValueCollectionValueProvider {
|
||||
|
||||
// QueryString should use the invariant culture since it's part of the URL, and the URL should be
|
||||
// interpreted in a uniform fashion regardless of the origin of a particular request.
|
||||
public QueryStringValueProvider(ModelBindingExecutionContext modelBindingExecutionContext)
|
||||
: this(modelBindingExecutionContext, modelBindingExecutionContext.HttpContext.Request.Unvalidated) {
|
||||
}
|
||||
|
||||
// For unit testing
|
||||
internal QueryStringValueProvider(ModelBindingExecutionContext modelBindingExecutionContext, UnvalidatedRequestValuesBase unvalidatedValues)
|
||||
: base(modelBindingExecutionContext.HttpContext.Request.QueryString, unvalidatedValues.QueryString, CultureInfo.InvariantCulture) {
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user