**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Web / System.Web.Caching / CachedRawResponse.cs
blob1556df1b223d02ef1f0afcd60be682034ed0c8a3
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 //
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.
32 using System;
33 using System.Text;
34 using System.Collections;
36 namespace System.Web.Caching {
38 internal class CachedRawResponse {
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 HttpResponseHeader date_header;
47 private byte[] buffer;
49 internal CachedRawResponse (HttpCachePolicy policy)
51 this.policy = policy;
52 this.varyby = varyby;
53 this.buffer = new byte [HttpWriter.MaxBufferSize];
56 internal HttpCachePolicy Policy {
57 get { return policy; }
58 set { policy = value; }
61 internal CachedVaryBy VaryBy {
62 get { return varyby; }
63 set { varyby = value; }
66 internal int StatusCode {
67 get { return status_code; }
68 set { status_code = value; }
71 internal string StatusDescription {
72 get { return status_desc; }
73 set { status_desc = value; }
76 internal int ContentLength {
77 get { return content_length; }
78 set { content_length = value; }
81 internal ArrayList Headers {
82 get { return headers; }
85 internal HttpResponseHeader DateHeader {
86 get { return date_header; }
87 set { date_header = value; }
90 internal void SetHeaders (ArrayList headers) {
91 this.headers = headers;
94 internal void SetData (byte[] buffer)
96 this.buffer = buffer;
99 internal byte[] GetData ()
101 return buffer;