SoapExtensionReflector.cs 738 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.Web.Services.Description.SoapExtensionReflector.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.Web.Services.Description {
  10. public abstract class SoapExtensionReflector {
  11. #region Fields
  12. ProtocolReflector reflectionContext;
  13. #endregion // Fields
  14. #region Constructors
  15. protected SoapExtensionReflector ()
  16. {
  17. }
  18. #endregion // Constructors
  19. #region Properties
  20. public ProtocolReflector ReflectionContext {
  21. get { return reflectionContext; }
  22. set { reflectionContext = value; }
  23. }
  24. #endregion // Properties
  25. #region Methods
  26. public abstract void ReflectMethod ();
  27. #endregion
  28. }
  29. }