SoapExtensionAttribute.cs 556 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // System.Web.Services.Protocols.SoapExtensionAttribute.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.Web.Services.Protocols {
  10. public abstract class SoapExtensionAttribute : Attribute {
  11. #region Constructors
  12. protected SoapExtensionAttribute ()
  13. {
  14. }
  15. #endregion // Constructors
  16. #region Properties
  17. public abstract Type ExtensionType {
  18. get;
  19. }
  20. public abstract int Priority {
  21. get;
  22. set;
  23. }
  24. #endregion // Properties
  25. }
  26. }