You've already forked linux-packaging-mono
18 lines
633 B
C#
18 lines
633 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
using System.Collections.Specialized;
|
|
using System.Globalization;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Microsoft.Web.Mvc
|
|
{
|
|
public class ServerVariablesValueProviderFactory : ValueProviderFactory
|
|
{
|
|
public override IValueProvider GetValueProvider(ControllerContext controllerContext)
|
|
{
|
|
NameValueCollection nvc = controllerContext.HttpContext.Request.ServerVariables;
|
|
return new NameValueCollectionValueProvider(nvc, CultureInfo.InvariantCulture);
|
|
}
|
|
}
|
|
}
|