| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- //
- // System.Web.Services.Protocols.SoapClientMessage.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Web.Services;
- namespace System.Web.Services.Protocols {
- public sealed class SoapClientMessage : SoapMessage {
- #region Fields
- SoapHttpClientProtocol client;
- SoapClientMethod clientMethod;
- string url;
- #region Constructors
-
- [MonoTODO ("Determine what calls this constructor.")]
- internal SoapClientMessage (SoapHttpClientProtocol client, SoapClientMethod clientMethod, string url)
- {
- this.client = client;
- this.url = url;
- this.clientMethod = clientMethod;
- }
- #endregion
- #region Properties
- public override string Action {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public SoapHttpClientProtocol Client {
- get { return client; }
- }
- public override LogicalMethodInfo MethodInfo {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public override bool OneWay {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public override string Url {
- get { return url; }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- protected override void EnsureInStage ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void EnsureOutStage ()
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|