MimeFormatter.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // System.Web.Services.Protocols.MimeFormatter.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Web.Services;
  10. namespace System.Web.Services.Protocols {
  11. public abstract class MimeFormatter {
  12. #region Constructors
  13. [MonoTODO]
  14. protected MimeFormatter ()
  15. {
  16. throw new NotImplementedException ();
  17. }
  18. #endregion // Constructors
  19. #region Methods
  20. [MonoTODO]
  21. public static MimeFormatter CreateInstance (Type type, object initializer)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. public abstract object GetInitializer (LogicalMethodInfo methodInfo);
  26. [MonoTODO]
  27. public static object GetInitializer (Type type, LogicalMethodInfo methodInfo)
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. [MonoTODO]
  32. public virtual object[] GetInitializers (LogicalMethodInfo[] methodInfos)
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. public static object[] GetInitializers (Type type, LogicalMethodInfo[] methodInfos)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. public abstract void Initialize (object initializer);
  42. #endregion // Methods
  43. }
  44. }