Merge branch 'BigIntegerParse'
[mono.git] / mcs / class / System.ServiceModel.Web / System.ServiceModel.Web / OutgoingWebRequestContext.cs
1 //
2 // OutgoingWebRequestContext.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // Copyright (C) 2008 Novell, Inc (http://www.novell.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 using System;
29 using System.Globalization;
30 using System.Net;
31 using System.ServiceModel.Channels;
32
33 namespace System.ServiceModel.Web
34 {
35         public class OutgoingWebRequestContext
36         {
37                 internal OutgoingWebRequestContext ()
38                 {
39                         Headers = new WebHeaderCollection ();
40                 }
41
42                 public string Accept { get; set; }
43
44                 public long ContentLength { get; set; }
45
46                 public string ContentType { get; set; }
47
48                 public WebHeaderCollection Headers { get; private set; }
49
50                 public string IfMatch { get; set; }
51
52                 public string IfModifiedSince { get; set; }
53
54                 public string IfNoneMatch { get; set; }
55
56                 public string IfUnmodifiedSince { get; set; }
57
58                 public string Method { get; set; }
59
60                 public bool SuppressEntityBody { get; set; }
61
62                 public string UserAgent { get; set; }
63
64                 internal void Apply (HttpRequestMessageProperty hp)
65                 {
66                         if (Headers != null)
67                                 foreach (var key in Headers.AllKeys)
68                                         hp.Headers [key] = Headers [key];
69                         if (Accept != null)
70                                 hp.Headers ["Accept"] = Accept;
71                         if (ContentLength > 0)
72                                 hp.Headers ["Content-Length"] = ContentLength.ToString (NumberFormatInfo.InvariantInfo);
73                         if (ContentType != null)
74                                 hp.Headers ["Content-Type"] = ContentType;
75                         if (IfMatch != null)
76                                 hp.Headers ["If-Match"] = IfMatch;
77                         if (IfModifiedSince != null)
78                                 hp.Headers ["If-Modified-Since"] = IfModifiedSince;
79                         if (IfNoneMatch != null)
80                                 hp.Headers ["If-None-Match"] = IfNoneMatch;
81                         if (IfUnmodifiedSince != null)
82                                 hp.Headers ["If-Unmodified-Since"] = IfUnmodifiedSince;
83                         if (Method != null)
84                                 hp.Method = Method;
85                         if (SuppressEntityBody)
86                                 hp.SuppressEntityBody = true;
87                         if (UserAgent != null)
88                                 hp.Headers ["User-Agent"] = UserAgent;
89                 }
90         }
91 }