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

RouteDataValueProvider.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f31ec75a0ad5c63c3b5e63d6e312c701e59a7426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Globalization;

namespace System.Web.Mvc
{
    public sealed class RouteDataValueProvider : DictionaryValueProvider<object>
    {
        // RouteData 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 RouteDataValueProvider(ControllerContext controllerContext)
            : base(controllerContext.RouteData.Values, CultureInfo.InvariantCulture)
        {
        }
    }
}