2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / class / System.Web.Abstractions / System.Web / HttpCachePolicyWrapper.cs
1 //
2 // HttpCachePolicyWrapper.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2008 Novell Inc. http://novell.com
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 using System;
31 using System.Collections;
32 using System.Collections.Generic;
33 using System.Globalization;
34 using System.Security.Permissions;
35 using System.Security.Principal;
36 using System.Web.Caching;
37
38 namespace System.Web
39 {
40         [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
41         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
42         public class HttpCachePolicyWrapper : HttpCachePolicyBase
43         {
44                 HttpCachePolicy w;
45
46                 public HttpCachePolicyWrapper (HttpCachePolicy httpCachePolicy)
47                 {
48                         if (httpCachePolicy == null)
49                                 throw new ArgumentNullException ("httpCachePolicy");
50                         w = httpCachePolicy;
51                 }
52
53                 public override HttpCacheVaryByContentEncodings VaryByContentEncodings {
54                         get { return w.VaryByContentEncodings; }
55                 }
56
57                 public override HttpCacheVaryByHeaders VaryByHeaders {
58                         get { return w.VaryByHeaders; }
59                 }
60
61                 public override HttpCacheVaryByParams VaryByParams {
62                         get { return w.VaryByParams; }
63                 }
64
65                 public override void AddValidationCallback (HttpCacheValidateHandler handler, object data)
66                 {
67                         w.AddValidationCallback (handler, data);
68                 }
69
70                 public override void AppendCacheExtension (string extension)
71                 {
72                         w.AppendCacheExtension (extension);
73                 }
74
75                 public override void SetAllowResponseInBrowserHistory (bool allow)
76                 {
77                         w.SetAllowResponseInBrowserHistory (allow);
78                 }
79
80                 public override void SetCacheability (HttpCacheability cacheability)
81                 {
82                         w.SetCacheability (cacheability);
83                 }
84
85                 public override void SetCacheability (HttpCacheability cacheability, string field)
86                 {
87                         w.SetCacheability (cacheability, field);
88                 }
89
90                 public override void SetVaryByCustom (string custom)
91                 {
92                         w.SetVaryByCustom (custom);
93                 }
94
95                 public override void SetETag (string etag)
96                 {
97                         w.SetETag (etag);
98                 }
99
100                 public override void SetETagFromFileDependencies ()
101                 {
102                         w.SetETagFromFileDependencies ();
103                 }
104
105                 public override void SetExpires (DateTime date)
106                 {
107                         w.SetExpires (date);
108                 }
109
110                 public override void SetLastModified (DateTime date)
111                 {
112                         w.SetLastModified (date);
113                 }
114
115                 public override void SetLastModifiedFromFileDependencies ()
116                 {
117                         w.SetLastModifiedFromFileDependencies ();
118                 }
119
120                 public override void SetMaxAge (TimeSpan delta)
121                 {
122                         w.SetMaxAge (delta);
123                 }
124
125                 public override void SetNoServerCaching ()
126                 {
127                         w.SetNoServerCaching ();
128                 }
129
130                 public override void SetNoStore ()
131                 {
132                         w.SetNoStore ();
133                 }
134
135                 public override void SetNoTransforms ()
136                 {
137                         w.SetNoTransforms ();
138                 }
139
140                 public override void SetOmitVaryStar (bool omit)
141                 {
142                         w.SetOmitVaryStar (omit);
143                 }
144
145                 public override void SetProxyMaxAge (TimeSpan delta)
146                 {
147                         w.SetProxyMaxAge (delta);
148                 }
149
150                 public override void SetRevalidation (HttpCacheRevalidation revalidation)
151                 {
152                         w.SetRevalidation (revalidation);
153                 }
154
155                 public override void SetSlidingExpiration (bool slide)
156                 {
157                         w.SetSlidingExpiration (slide);
158                 }
159
160                 public override void SetValidUntilExpires (bool validUntilExpires)
161                 {
162                         w.SetValidUntilExpires (validUntilExpires);
163                 }
164         }
165 }