| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // System.Web.Services.Protocols.SoapExtension.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.IO;
- namespace System.Web.Services.Protocols {
- public abstract class SoapExtension {
- #region Fields
- Stream stream;
- #endregion
- #region Constructors
- [MonoTODO]
- protected SoapExtension ()
- {
- throw new NotImplementedException ();
- }
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- public virtual Stream ChainStream (Stream stream)
- {
- throw new NotImplementedException ();
- }
- public abstract object GetInitializer (Type serviceType);
- public abstract object GetInitializer (LogicalMethodInfo methodInfo, SoapExtensionAttribute attribute);
- public abstract void Initialize (object initializer);
- public abstract void ProcessMessage (SoapMessage message);
- #endregion // Methods
- }
- }
|