| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //
- // System.Web.Services.Protocols.MimeFormatter.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Web.Services;
- namespace System.Web.Services.Protocols {
- public abstract class MimeFormatter {
- #region Constructors
- [MonoTODO]
- protected MimeFormatter ()
- {
- throw new NotImplementedException ();
- }
-
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- public static MimeFormatter CreateInstance (Type type, object initializer)
- {
- throw new NotImplementedException ();
- }
- public abstract object GetInitializer (LogicalMethodInfo methodInfo);
- [MonoTODO]
- public static object GetInitializer (Type type, LogicalMethodInfo methodInfo)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual object[] GetInitializers (LogicalMethodInfo[] methodInfos)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static object[] GetInitializers (Type type, LogicalMethodInfo[] methodInfos)
- {
- throw new NotImplementedException ();
- }
- public abstract void Initialize (object initializer);
- #endregion // Methods
- }
- }
|