[bcl] Rename aot_hybrid profile to testing_aot_hybrid
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / SoapClientMessage.cs
1 // 
2 // System.Web.Services.Protocols.SoapClientMessage.cs
3 //
4 // Authors:
5 //   Tim Coleman (tim@timcoleman.com)
6 //   Miguel de Icaza (miguel@ximian.com)
7 //
8 // Copyright (C) Tim Coleman, 2002
9 // Copyright (C) Ximian, Inc. 2003
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System.Web.Services;
34 using System.Web.Services.Protocols;
35
36 namespace System.Web.Services.Protocols {
37         public sealed class SoapClientMessage : SoapMessage {
38
39                 #region Fields
40
41                 SoapHttpClientProtocol client;
42                 string url;
43                 internal SoapMethodStubInfo MethodStubInfo;
44
45                 //
46                 // Expose this one internally
47                 //
48                 internal object [] Parameters;
49                 #endregion
50
51                 #region Constructors
52
53                 //
54                 // Constructs the SoapClientMessage
55                 //
56                 internal SoapClientMessage (SoapHttpClientProtocol client, SoapMethodStubInfo msi, string url, object [] parameters)
57                 {
58                         this.MethodStubInfo = msi;
59                         this.client = client;
60                         this.url = url;
61                         Parameters = parameters;
62                         if (SoapVersion == SoapProtocolVersion.Soap12)
63                                 ContentType = "application/soap+xml";
64                 }
65
66                 #endregion 
67
68                 #region Properties
69
70                 public override string Action {
71                         get { return MethodStubInfo.Action; }
72                 }
73
74                 public SoapHttpClientProtocol Client {
75                         get { return client; }
76                 }
77
78                 public override LogicalMethodInfo MethodInfo {
79                         get { return MethodStubInfo.MethodInfo; }
80                 }
81
82                 public override bool OneWay {
83                         get { return MethodStubInfo.OneWay; }
84                 }
85
86                 public override string Url {
87                         get { return url; }
88                 }
89                 
90                 [System.Runtime.InteropServices.ComVisible(false)]
91                 public override SoapProtocolVersion SoapVersion {
92                         get { return client.SoapVersion; }
93                 }
94
95                 #endregion // Properties
96
97                 #region Methods
98
99                 protected override void EnsureInStage ()
100                 {
101                         EnsureStage (SoapMessageStage.BeforeSerialize);
102                 }
103
104                 protected override void EnsureOutStage ()
105                 {
106                         EnsureStage (SoapMessageStage.AfterDeserialize);
107                 }
108
109                 #endregion // Methods
110         }
111 }