2010-06-21 Marek Habersack <mhabersack@novell.com>
[mcs.git] / class / System.Web.Services / System.Web.Services.Protocols / SoapClientMessage.cs
blobd034712a6655bd3c610f4bfcfb2f9118b0a2b0e5
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
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.
33 using System.Web.Services;
34 using System.Web.Services.Protocols;
36 namespace System.Web.Services.Protocols {
37 public sealed class SoapClientMessage : SoapMessage {
39 #region Fields
41 SoapHttpClientProtocol client;
42 string url;
43 internal SoapMethodStubInfo MethodStubInfo;
46 // Expose this one internally
48 internal object [] Parameters;
49 #endregion
51 #region Constructors
54 // Constructs the SoapClientMessage
56 internal SoapClientMessage (SoapHttpClientProtocol client, SoapMethodStubInfo msi, string url, object [] parameters)
58 this.MethodStubInfo = msi;
59 this.client = client;
60 this.url = url;
61 Parameters = parameters;
62 #if NET_2_0
63 if (SoapVersion == SoapProtocolVersion.Soap12)
64 ContentType = "application/soap+xml";
65 #endif
68 #endregion
70 #region Properties
72 public override string Action {
73 get { return MethodStubInfo.Action; }
76 public SoapHttpClientProtocol Client {
77 get { return client; }
80 public override LogicalMethodInfo MethodInfo {
81 get { return MethodStubInfo.MethodInfo; }
84 public override bool OneWay {
85 get { return MethodStubInfo.OneWay; }
88 public override string Url {
89 get { return url; }
92 #if NET_2_0
93 [System.Runtime.InteropServices.ComVisible(false)]
94 public override SoapProtocolVersion SoapVersion {
95 get { return client.SoapVersion; }
97 #endif
99 #endregion // Properties
101 #region Methods
103 protected override void EnsureInStage ()
105 EnsureStage (SoapMessageStage.BeforeSerialize);
108 protected override void EnsureOutStage ()
110 EnsureStage (SoapMessageStage.AfterDeserialize);
113 #endregion // Methods