2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / class / System.Web.Abstractions / System.Web / HttpFileCollectionWrapper.cs
1 //
2 // HttpFileCollectionWrapper.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.Collections.Specialized;
34 using System.Globalization;
35 using System.Runtime.Serialization;
36 using System.Security.Permissions;
37 using System.Security.Principal;
38 using System.Web.Caching;
39
40 namespace System.Web
41 {
42         [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
43         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
44         public class HttpFileCollectionWrapper : HttpFileCollectionBase
45         {
46                 HttpFileCollection w;
47
48                 public HttpFileCollectionWrapper (HttpFileCollection httpFileCollection)
49                 {
50                         if (httpFileCollection == null)
51                                 throw new ArgumentNullException ("httpFileCollection");
52                         w = httpFileCollection;
53                 }
54
55                 public override string [] AllKeys {
56                         get { return w.AllKeys; }
57                 }
58
59                 public override int Count {
60                         get { return w.Count; }
61                 }
62
63                 public override bool IsSynchronized {
64                         get { return ((ICollection) w).IsSynchronized; }
65                 }
66
67                 public override HttpPostedFileBase this [int index] {
68                         get { return Get (index); }
69                 }
70
71                 public override HttpPostedFileBase this [string name] {
72                         get { return Get (name); }
73                 }
74
75                 public override NameObjectCollectionBase.KeysCollection Keys {
76                         get { return w.Keys; }
77                 }
78
79                 public override object SyncRoot {
80                         get { return ((ICollection) w).SyncRoot; }
81                 }
82
83                 public override void CopyTo (Array dest, int index)
84                 {
85                         w.CopyTo (dest, index);
86                 }
87
88                 public override HttpPostedFileBase Get (int index)
89                 {
90                         return new HttpPostedFileWrapper (w.Get (index));
91                 }
92
93                 public override HttpPostedFileBase Get (string name)
94                 {
95                         return new HttpPostedFileWrapper (w.Get (name));
96                 }
97
98                 public override IEnumerator GetEnumerator ()
99                 {
100                         return w.GetEnumerator ();
101                 }
102
103                 public override string GetKey (int index)
104                 {
105                         return w.GetKey (index);
106                 }
107
108                 public override void GetObjectData (SerializationInfo info, StreamingContext context)
109                 {
110                         w.GetObjectData (info, context);
111                 }
112
113                 public override void OnDeserialization (object sender)
114                 {
115                         w.OnDeserialization (sender);
116                 }
117         }
118 }