SoapExtensionImporter.cs 792 B

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