* HttpSimpleClientProtocol.cs: Do not encode the request url, since it is
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / SoapExtensionAttribute.cs
1 // \r
2 // System.Web.Services.Protocols.SoapExtensionAttribute.cs\r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //\r
7 // Copyright (C) Tim Coleman, 2002\r
8 //\r
9 \r
10 namespace System.Web.Services.Protocols {\r
11         public abstract class SoapExtensionAttribute : Attribute {\r
12 \r
13                 #region Constructors\r
14 \r
15                 protected SoapExtensionAttribute () \r
16                 {\r
17                 }\r
18 \r
19                 #endregion // Constructors\r
20 \r
21                 #region Properties\r
22 \r
23                 public abstract Type ExtensionType {\r
24                         get;\r
25                 }\r
26 \r
27                 public abstract int Priority {\r
28                         get;\r
29                         set;\r
30                 }\r
31 \r
32                 #endregion // Properties\r
33         }\r
34 }\r