Code style police
[mono.git] / mcs / class / System.Web / System.Web / BaseParamsCollection.cs
1 //
2 // System.Web.BaseParamsCollection
3 //
4 // Authors:
5 //   Vladimir Krasnov (vladimirk@mainsoft.com)
6 //
7 // (C) 2006 Mainsoft Co. (http://www.mainsoft.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using System.Collections.Specialized;
31 using System.Runtime.Serialization;
32
33 namespace System.Web
34 {
35         abstract class BaseParamsCollection : WebROCollection
36         {
37                 protected HttpRequest _request;
38                 protected bool _loaded = false;
39
40                 public BaseParamsCollection (HttpRequest request)
41                 {               
42                         _request = request;
43                         IsReadOnly = true;
44                 }
45
46                 private void LoadInfo ()
47                 {
48                         if (_loaded)
49                                 return;
50                         IsReadOnly = false;
51
52                         InsertInfo ();
53         
54                         IsReadOnly = true;
55                         _loaded = true;
56
57                 }
58
59                 protected abstract void InsertInfo ();
60
61                 public override string Get (int index)
62                 {
63                         LoadInfo ();
64                         return base.Get (index); 
65                 }
66
67                 protected abstract string InternalGet (string name);
68
69                 public override string Get (string name)
70                 {
71                         LoadInfo ();
72                         if (!_loaded)                   
73                                 return InternalGet (name);                                              
74                                 
75                         return base.Get (name);         
76                 }
77
78                 public override string GetKey (int index)
79                 {
80                         LoadInfo ();
81                         return base.GetKey (index); 
82                 }
83  
84                 public override string[] GetValues (int index)
85                 {
86                         string text1;
87                         string[] array1;
88                         text1 = Get (index);
89                         if (text1 == null) 
90                                 return null; 
91
92                         array1 = new string[1];
93                         array1[0] = text1;
94                         return array1; 
95                 }
96  
97                 public override string[] GetValues (string name)
98                 {
99                         string text1;
100                         string[] array1;
101                         text1 = Get (name);
102                         if (text1 == null) 
103                                 return null; 
104
105                         array1 = new string[1];
106                         array1[0] = text1;
107                         return array1; 
108                 }
109  
110                 public override void GetObjectData (SerializationInfo info, StreamingContext context)
111                 {
112                         throw new SerializationException (); 
113                 }
114
115                 public override string[] AllKeys 
116                 {
117                         get {
118                                 LoadInfo ();
119                                 return base.AllKeys;
120                         }
121                 }
122
123                 public override int Count 
124                 {
125                         get {
126                                 LoadInfo ();
127                                 return base.Count;
128                         }
129                 }
130         }
131 }