2008-09-26 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.Caching / CachedRawResponse.cs
1 //
2 // System.Web.Caching.CachedRawResponse
3 //
4 // Author(s):
5 //  Jackson Harper (jackson@ximian.com)
6 //
7 // (C) 2003 Novell, Inc (http://www.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
31
32 using System;
33 using System.Text;
34 using System.Collections;
35
36 namespace System.Web.Caching {
37
38         internal class CachedRawResponse {
39
40                 private HttpCachePolicy policy;
41                 private CachedVaryBy varyby;
42                 private int status_code;
43                 private string status_desc;
44                 private int content_length;
45                 private ArrayList headers;
46                 private byte[] buffer;
47                 
48                 internal CachedRawResponse (HttpCachePolicy policy)
49                 {
50                         this.policy = policy;
51                         this.buffer = new byte [32*1024];
52                 }
53
54                 internal HttpCachePolicy Policy {
55                         get { return policy; }
56                         set { policy = value; }
57                 }
58
59                 internal CachedVaryBy VaryBy {
60                         get { return varyby; }
61                         set { varyby = value; }
62                 }
63                 
64                 internal int StatusCode {
65                         get { return status_code; }
66                         set { status_code = value; }
67                 }
68
69                 internal string StatusDescription {
70                         get { return status_desc; }
71                         set { status_desc = value; }
72                 }
73
74                 internal int ContentLength {
75                         get { return content_length; }
76                         set { content_length = value; }
77                 }
78                 
79                 internal ArrayList Headers {
80                         get { return headers; }
81                 }
82
83                 internal void SetHeaders (ArrayList headers) {
84                         this.headers = headers;
85                 }
86
87                 internal void SetData (byte[] buffer)
88                 {
89                         this.buffer = buffer;
90                 }
91                 
92                 internal byte[] GetData ()
93                 {
94                         return buffer;
95                 }
96         }
97 }
98