1 // Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
2 
3 namespace System.Web.Mvc
4 {
5     public static class ValueProviderFactories
6     {
7         private static readonly ValueProviderFactoryCollection _factories = new ValueProviderFactoryCollection()
8         {
9             new ChildActionValueProviderFactory(),
10             new FormValueProviderFactory(),
11             new JsonValueProviderFactory(),
12             new RouteDataValueProviderFactory(),
13             new QueryStringValueProviderFactory(),
14             new HttpFileCollectionValueProviderFactory(),
15         };
16 
17         public static ValueProviderFactoryCollection Factories
18         {
19             get { return _factories; }
20         }
21     }
22 }
23