[SRE] Improved token fixups processing.
[mono.git] / mcs / class / System.Net.Http / System.Net.Http.Headers / HttpContentHeaders.cs
1 //
2 // HttpContentHeaders.cs
3 //
4 // Authors:
5 //      Marek Safar  <marek.safar@gmail.com>
6 //
7 // Copyright (C) 2011 Xamarin Inc (http://www.xamarin.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.Collections.Generic;
30
31 namespace System.Net.Http.Headers
32 {
33         public sealed class HttpContentHeaders : HttpHeaders
34         {
35                 readonly HttpContent content;
36
37                 internal HttpContentHeaders (HttpContent content)
38                         : base (HttpHeaderKind.Content)
39                 {
40                         this.content = content;
41                 }
42                 
43                 public ICollection<string> Allow {
44                         get {
45                                 return GetValues<string> ("Allow");
46                         }
47                 }
48
49                 public ICollection<string> ContentEncoding {
50                         get {
51                                 return GetValues<string> ("Content-Encoding");
52                         }
53                 }
54                 
55                 public ContentDispositionHeaderValue ContentDisposition {
56                         get {
57                                 return GetValue<ContentDispositionHeaderValue> ("Content-Disposition");
58                         }
59                         set {
60                                 AddOrRemove ("Content-Disposition", value);
61                         }
62                 }
63
64                 public ICollection<string> ContentLanguage {
65                         get {
66                                 return GetValues<string> ("Content-Language");
67                         }
68                 }
69
70                 public long? ContentLength {
71                         get {
72                                 long? v = GetValue<long?> ("Content-Length");
73                                 if (v != null)
74                                         return v;
75
76                                 v = content.LoadedBufferLength;
77                                 if (v != null)
78                                         return v;
79
80                                 long l;
81                                 if (content.TryComputeLength (out l))
82                                         return l;
83
84                                 return null;
85                         }
86                         set {
87                                 AddOrRemove ("Content-Length", value);
88                         }
89                 }
90
91                 public Uri ContentLocation {
92                         get {
93                                 return GetValue<Uri> ("Content-Location");
94                         }
95                         set {
96                                 AddOrRemove ("Content-Location", value);
97                         }
98                 }
99
100                 public byte[] ContentMD5 {
101                         get {
102                                 return GetValue<byte[]> ("Content-MD5");
103                         }
104                         set {
105                                 AddOrRemove ("Content-MD5", value, Parser.MD5.ToString);
106                         }
107                 }
108
109                 public ContentRangeHeaderValue ContentRange {
110                         get {
111                                 return GetValue<ContentRangeHeaderValue> ("Content-Range");
112                         }
113                         set {
114                                 AddOrRemove ("Content-Range", value);
115                         }
116                 }
117
118                 public MediaTypeHeaderValue ContentType {
119                         get {
120                                 return GetValue<MediaTypeHeaderValue> ("Content-Type");
121                         }
122                         set {
123                                 AddOrRemove ("Content-Type", value);
124                         }
125                 }
126
127                 public DateTimeOffset? Expires {
128                         get {
129                                 return GetValue<DateTimeOffset?> ("Expires");
130                         }
131                         set {
132                                 AddOrRemove ("Expires", value, Parser.DateTime.ToString);
133                         }
134                 }
135
136                 public DateTimeOffset? LastModified {
137                         get {
138                                 return GetValue<DateTimeOffset?> ("Last-Modified");
139                         }
140                         set {
141                                 AddOrRemove ("Last-Modified", value, Parser.DateTime.ToString);
142                         }
143                 }
144         }
145 }