svn path=/branches/mono-1-1-9/mcs/; revision=51216
[mono.git] / mcs / class / System.Web / System.Web / HttpFileCollection.cs
1 //
2 // System.Web.HttpFileCollection.cs
3 //
4 // Author:
5 //      Chris Toshok (toshok@novell.com)
6 //
7
8 //
9 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
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
31 using System.Collections.Specialized;
32
33 namespace System.Web {
34
35         public sealed class HttpFileCollection : NameObjectCollectionBase
36         {
37                 internal HttpFileCollection ()
38                 {
39                 }
40
41                 internal void AddFile (string name, HttpPostedFile file)
42                 {
43                         BaseAdd (name, file);
44                 }
45
46                 public void CopyTo (Array dest, int index)
47                 {
48                         /* XXX this is kind of gross and inefficient
49                          * since it makes a copy of the superclass's
50                          * list */
51                         object[] values = BaseGetAllValues();
52                         values.CopyTo (dest, index);
53                 }
54
55                 public string GetKey (int index)
56                 {
57                         return BaseGetKey (index);
58                 }
59
60                 public HttpPostedFile Get (int index)
61                 {
62                         return (HttpPostedFile)BaseGet (index);
63                 }
64
65                 public HttpPostedFile Get (string key)
66                 {
67                         return (HttpPostedFile)BaseGet (key);
68                 }
69
70                 public HttpPostedFile this [string key] {
71                         get {
72                                 return Get (key);
73                         }
74                 }
75
76                 public HttpPostedFile this [int index] {
77                         get {
78                                 return Get (index);
79                         }
80                 }
81
82                 public string[] AllKeys {
83                         get {
84                                 return BaseGetAllKeys();
85                         }
86                 }
87         }
88
89 }