| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // System.Web.Services.Protocols.SoapExtensionAttribute.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.Web.Services.Protocols {
- public abstract class SoapExtensionAttribute : Attribute {
- #region Constructors
- protected SoapExtensionAttribute ()
- {
- }
- #endregion // Constructors
- #region Properties
- public abstract Type ExtensionType {
- get;
- }
- public abstract int Priority {
- get;
- set;
- }
- #endregion // Properties
- }
- }
|