[System] UriKind.RelativeOrAbsolute workaround.
[mono.git] / mcs / class / System.Web.Abstractions / System.Web / HttpCachePolicyBase.cs
1 //
2 // HttpCachePolicyBase.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.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
43         [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
44         public abstract class HttpCachePolicyBase
45         {
46                 void NotImplemented ()
47                 {
48                         throw new NotImplementedException ();
49                 }
50
51                 public virtual HttpCacheVaryByContentEncodings VaryByContentEncodings { get { NotImplemented (); return null; } }
52
53                 public virtual HttpCacheVaryByHeaders VaryByHeaders { get { NotImplemented (); return null; } }
54
55                 public virtual HttpCacheVaryByParams VaryByParams { get { NotImplemented (); return null; } }
56
57                 public virtual void AddValidationCallback (HttpCacheValidateHandler handler, object data)
58                 {
59                         NotImplemented ();
60                 }
61
62                 public virtual void AppendCacheExtension (string extension)
63                 {
64                         NotImplemented ();
65                 }
66
67                 public virtual void SetAllowResponseInBrowserHistory (bool allow)
68                 {
69                         NotImplemented ();
70                 }
71
72                 public virtual void SetCacheability (HttpCacheability cacheability)
73                 {
74                         NotImplemented ();
75                 }
76
77                 public virtual void SetCacheability (HttpCacheability cacheability, string field)
78                 {
79                         NotImplemented ();
80                 }
81
82                 public virtual void SetETag (string etag)
83                 {
84                         NotImplemented ();
85                 }
86
87                 public virtual void SetETagFromFileDependencies ()
88                 {
89                         NotImplemented ();
90                 }
91
92                 public virtual void SetExpires (DateTime date)
93                 {
94                         NotImplemented ();
95                 }
96
97                 public virtual void SetLastModified (DateTime date)
98                 {
99                         NotImplemented ();
100                 }
101
102                 public virtual void SetLastModifiedFromFileDependencies ()
103                 {
104                         NotImplemented ();
105                 }
106
107                 public virtual void SetMaxAge (TimeSpan delta)
108                 {
109                         NotImplemented ();
110                 }
111
112                 public virtual void SetNoServerCaching ()
113                 {
114                         NotImplemented ();
115                 }
116
117                 public virtual void SetNoStore ()
118                 {
119                         NotImplemented ();
120                 }
121
122                 public virtual void SetNoTransforms ()
123                 {
124                         NotImplemented ();
125                 }
126
127                 public virtual void SetOmitVaryStar (bool omit)
128                 {
129                         NotImplemented ();
130                 }
131
132                 public virtual void SetProxyMaxAge (TimeSpan delta)
133                 {
134                         NotImplemented ();
135                 }
136
137                 public virtual void SetRevalidation (HttpCacheRevalidation revalidation)
138                 {
139                         NotImplemented ();
140                 }
141
142                 public virtual void SetSlidingExpiration (bool slide)
143                 {
144                         NotImplemented ();
145                 }
146
147                 public virtual void SetValidUntilExpires (bool validUntilExpires)
148                 {
149                         NotImplemented ();
150                 }
151
152                 public virtual void SetVaryByCustom (string custom)
153                 {
154                         NotImplemented ();
155                 }
156         }
157 }