SoapTransportImporter.cs 812 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // System.Web.Services.Description.SoapTransportImporter.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 SoapTransportImporter {
  11. #region Fields
  12. SoapProtocolImporter importContext;
  13. #endregion // Fields
  14. #region Constructors
  15. protected SoapTransportImporter ()
  16. {
  17. importContext = null;
  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 ImportClass ();
  28. public abstract bool IsSupportedTransport (string transport);
  29. #endregion
  30. }
  31. }