| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- //
- // 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 Properties
- public override string Action {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public SoapHttpClientProtocol Client {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public override LogicalMethodInfo MethodInfo {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public override bool OneWay {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public override string Url {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- protected override void EnsureInStage ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void EnsureOutStage ()
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|