[resgen] Implement conditional resources (#if/#ifdef)
[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.Runtime.CompilerServices;
35 using System.Security.Permissions;
36 using System.Security.Principal;
37 using System.Web.Caching;
38
39 namespace System.Web
40 {
41         [TypeForwardedFrom ("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
42         [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
43         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
44         public class HttpCachePolicyWrapper : HttpCachePolicyBase
45         {
46                 HttpCachePolicy w;
47
48                 public HttpCachePolicyWrapper (HttpCachePolicy httpCachePolicy)
49                 {
50                         if (httpCachePolicy == null)
51                                 throw new ArgumentNullException ("httpCachePolicy");
52                         w = httpCachePolicy;
53                 }
54
55                 public override HttpCacheVaryByContentEncodings VaryByContentEncodings {
56                         get { return w.VaryByContentEncodings; }
57                 }
58
59                 public override HttpCacheVaryByHeaders VaryByHeaders {
60                         get { return w.VaryByHeaders; }
61                 }
62
63                 public override HttpCacheVaryByParams VaryByParams {
64                         get { return w.VaryByParams; }
65                 }
66
67                 public override void AddValidationCallback (HttpCacheValidateHandler handler, object data)
68                 {
69                         w.AddValidationCallback (handler, data);
70                 }
71
72                 public override void AppendCacheExtension (string extension)
73                 {
74                         w.AppendCacheExtension (extension);
75                 }
76
77                 public override void SetAllowResponseInBrowserHistory (bool allow)
78                 {
79                         w.SetAllowResponseInBrowserHistory (allow);
80                 }
81
82                 public override void SetCacheability (HttpCacheability cacheability)
83                 {
84                         w.SetCacheability (cacheability);
85                 }
86
87                 public override void SetCacheability (HttpCacheability cacheability, string field)
88                 {
89                         w.SetCacheability (cacheability, field);
90                 }
91
92                 public override void SetVaryByCustom (string custom)
93                 {
94                         w.SetVaryByCustom (custom);
95                 }
96
97                 public override void SetETag (string etag)
98                 {
99                         w.SetETag (etag);
100                 }
101
102                 public override void SetETagFromFileDependencies ()
103                 {
104                         w.SetETagFromFileDependencies ();
105                 }
106
107                 public override void SetExpires (DateTime date)
108                 {
109                         w.SetExpires (date);
110                 }
111
112                 public override void SetLastModified (DateTime date)
113                 {
114                         w.SetLastModified (date);
115                 }
116
117                 public override void SetLastModifiedFromFileDependencies ()
118                 {
119                         w.SetLastModifiedFromFileDependencies ();
120                 }
121
122                 public override void SetMaxAge (TimeSpan delta)
123                 {
124                         w.SetMaxAge (delta);
125                 }
126
127                 public override void SetNoServerCaching ()
128                 {
129                         w.SetNoServerCaching ();
130                 }
131
132                 public override void SetNoStore ()
133                 {
134                         w.SetNoStore ();
135                 }
136
137                 public override void SetNoTransforms ()
138                 {
139                         w.SetNoTransforms ();
140                 }
141
142                 public override void SetOmitVaryStar (bool omit)
143                 {
144                         w.SetOmitVaryStar (omit);
145                 }
146
147                 public override void SetProxyMaxAge (TimeSpan delta)
148                 {
149                         w.SetProxyMaxAge (delta);
150                 }
151
152                 public override void SetRevalidation (HttpCacheRevalidation revalidation)
153                 {
154                         w.SetRevalidation (revalidation);
155                 }
156
157                 public override void SetSlidingExpiration (bool slide)
158                 {
159                         w.SetSlidingExpiration (slide);
160                 }
161
162                 public override void SetValidUntilExpires (bool validUntilExpires)
163                 {
164                         w.SetValidUntilExpires (validUntilExpires);
165                 }
166         }
167 }