BindingFlags.Public needed here as Exception.HResult is now public in .NET 4.5. This...
[mono.git] / mcs / class / System / System.Net.Configuration / HttpCachePolicyElement.cs
1 //
2 // System.Net.Configuration.HttpCachePolicyElement.cs
3 //
4 // Authors:
5 //      Tim Coleman (tim@timcoleman.com)
6 //      Chris Toshok (toshok@ximian.com)
7 //
8 // Copyright (C) Tim Coleman, 2004
9 // (C) 2004,2005 Novell, Inc. (http://www.novell.com)
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 #if NET_2_0 && CONFIGURATION_DEP
34
35 using System;
36 using System.Configuration;
37 using System.Net.Cache;
38 using System.Xml;
39
40 namespace System.Net.Configuration 
41 {
42         public sealed class HttpCachePolicyElement : ConfigurationElement
43         {
44                 #region Fields
45
46                 static ConfigurationProperty maximumAgeProp;
47                 static ConfigurationProperty maximumStaleProp;
48                 static ConfigurationProperty minimumFreshProp;
49                 static ConfigurationProperty policyLevelProp;
50                 static ConfigurationPropertyCollection properties;
51
52                 #endregion // Fields
53
54                 #region Constructors
55
56                 static HttpCachePolicyElement ()
57                 {
58                         maximumAgeProp = new ConfigurationProperty ("maximumAge", typeof (TimeSpan), TimeSpan.MaxValue);
59                         maximumStaleProp = new ConfigurationProperty ("maximumStale", typeof (TimeSpan), TimeSpan.MinValue);
60                         minimumFreshProp = new ConfigurationProperty ("minimumFresh", typeof (TimeSpan), TimeSpan.MinValue);
61                         policyLevelProp = new ConfigurationProperty ("policyLevel", typeof (HttpRequestCacheLevel),
62                                                                      HttpRequestCacheLevel.Default, ConfigurationPropertyOptions.IsRequired);
63                         properties = new ConfigurationPropertyCollection ();
64
65                         properties.Add (maximumAgeProp);
66                         properties.Add (maximumStaleProp);
67                         properties.Add (minimumFreshProp);
68                         properties.Add (policyLevelProp);
69                 }
70
71                 public HttpCachePolicyElement ()
72                 {
73                 }
74
75                 #endregion // Constructors
76
77                 #region Properties
78
79                 [ConfigurationProperty ("maximumAge", DefaultValue = "10675199.02:48:05.4775807")]
80                 public TimeSpan MaximumAge {
81                         get { return (TimeSpan) base [maximumAgeProp]; }
82                         set { base [maximumAgeProp] = value; }
83                 }
84
85                 [ConfigurationProperty ("maximumStale", DefaultValue = "-10675199.02:48:05.4775808")]
86                 public TimeSpan MaximumStale {
87                         get { return (TimeSpan) base [maximumStaleProp]; }
88                         set { base [maximumStaleProp] = value; }
89                 }
90
91                 [ConfigurationProperty ("minimumFresh", DefaultValue = "-10675199.02:48:05.4775808")]
92                 public TimeSpan MinimumFresh {
93                         get { return (TimeSpan) base [minimumFreshProp]; }
94                         set { base [minimumFreshProp] = value; }
95                 }
96
97                 [ConfigurationProperty ("policyLevel", DefaultValue = "Default", Options = ConfigurationPropertyOptions.IsRequired)]
98                 public HttpRequestCacheLevel PolicyLevel {
99                         get { return (HttpRequestCacheLevel) base [policyLevelProp]; }
100                         set { base [policyLevelProp] = value; }
101                 }
102
103                 protected override ConfigurationPropertyCollection Properties {
104                         get { return properties; }
105                 }
106
107                 #endregion // Properties
108
109                 #region Methods
110
111                 [MonoTODO]
112                 protected override void DeserializeElement (XmlReader reader, bool serializeCollectionKey)
113                 {
114                         throw new NotImplementedException ();
115                 }
116
117                 [MonoTODO]
118                 protected override void Reset (ConfigurationElement parentElement)
119                 {
120                         throw new NotImplementedException ();
121                 }
122
123                 #endregion // Methods
124         }
125 }
126
127 #endif