Bug 15572. Lookup KnownTypeCollection element types in MSSimpleNamespace
[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                 }
40
41                 public string Accept { get; set; }
42
43                 public long ContentLength { get; set; }
44
45                 public string ContentType { get; set; }
46
47                 public WebHeaderCollection Headers { get; private set; }
48
49                 public string IfMatch { get; set; }
50
51                 public string IfModifiedSince { get; set; }
52
53                 public string IfNoneMatch { get; set; }
54
55                 public string IfUnmodifiedSince { get; set; }
56
57                 public string Method { get; set; }
58
59                 public bool SuppressEntityBody { get; set; }
60
61                 public string UserAgent { get; set; }
62
63                 internal void Apply (HttpRequestMessageProperty hp)
64                 {
65                         if (Headers != null)
66                                 foreach (var key in Headers.AllKeys)
67                                         hp.Headers [key] = Headers [key];
68                         if (Accept != null)
69                                 hp.Headers ["Accept"] = Accept;
70                         if (ContentLength > 0)
71                                 hp.Headers ["Content-Length"] = ContentLength.ToString (NumberFormatInfo.InvariantInfo);
72                         if (ContentType != null)
73                                 hp.Headers ["Content-Type"] = ContentType;
74                         if (IfMatch != null)
75                                 hp.Headers ["If-Match"] = IfMatch;
76                         if (IfModifiedSince != null)
77                                 hp.Headers ["If-Modified-Since"] = IfModifiedSince;
78                         if (IfNoneMatch != null)
79                                 hp.Headers ["If-None-Match"] = IfNoneMatch;
80                         if (IfUnmodifiedSince != null)
81                                 hp.Headers ["If-Unmodified-Since"] = IfUnmodifiedSince;
82                         if (Method != null)
83                                 hp.Method = Method;
84                         if (SuppressEntityBody)
85                                 hp.SuppressEntityBody = true;
86                         if (UserAgent != null)
87                                 hp.Headers ["User-Agent"] = UserAgent;
88                 }
89         }
90 }