Fix bugs in sizing TableLayoutPanel (Xamarin bug 18638)
[mono.git] / mcs / class / System.Web.Mvc / System.Web.Mvc / AjaxHelper.cs
1 /* ****************************************************************************\r
2  *\r
3  * Copyright (c) Microsoft Corporation. All rights reserved.\r
4  *\r
5  * This software is subject to the Microsoft Public License (Ms-PL). \r
6  * A copy of the license can be found in the license.htm file included \r
7  * in this distribution.\r
8  *\r
9  * You must not remove this notice, or any other, from this software.\r
10  *\r
11  * ***************************************************************************/\r
12 \r
13 namespace System.Web.Mvc {\r
14     using System;\r
15     using System.Web.Routing;\r
16 \r
17     public class AjaxHelper {\r
18 \r
19         public AjaxHelper(ViewContext viewContext, IViewDataContainer viewDataContainer)\r
20             : this(viewContext, viewDataContainer, RouteTable.Routes) {\r
21         }\r
22 \r
23         public AjaxHelper(ViewContext viewContext, IViewDataContainer viewDataContainer, RouteCollection routeCollection) {\r
24             if (viewContext == null) {\r
25                 throw new ArgumentNullException("viewContext");\r
26             }\r
27             if (viewDataContainer == null) {\r
28                 throw new ArgumentNullException("viewDataContainer");\r
29             }\r
30             if (routeCollection == null) {\r
31                 throw new ArgumentNullException("routeCollection");\r
32             }\r
33             ViewContext = viewContext;\r
34             ViewDataContainer = viewDataContainer;\r
35             RouteCollection = routeCollection;\r
36         }\r
37 \r
38         public RouteCollection RouteCollection {\r
39             get;\r
40             private set;\r
41         }\r
42 \r
43         public ViewContext ViewContext {\r
44             get;\r
45             private set;\r
46         }\r
47 \r
48         public ViewDataDictionary ViewData {\r
49             get {\r
50                 return ViewDataContainer.ViewData;\r
51             }\r
52         }\r
53 \r
54         public IViewDataContainer ViewDataContainer {\r
55             get;\r
56             private set;\r
57         }\r
58     }\r
59 }\r