2002-08-12 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / SoapExtensionReflector.cs
1 // \r
2 // System.Web.Services.Description.SoapExtensionReflector.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.Description {\r
11         public abstract class SoapExtensionReflector {\r
12 \r
13                 #region Fields\r
14 \r
15                 ProtocolReflector reflectionContext;\r
16                 \r
17                 #endregion // Fields\r
18 \r
19                 #region Constructors\r
20         \r
21                 protected SoapExtensionReflector ()\r
22                 {\r
23                 }\r
24                 \r
25                 #endregion // Constructors\r
26 \r
27                 #region Properties\r
28 \r
29                 public ProtocolReflector ReflectionContext {\r
30                         get { return reflectionContext; }\r
31                         set { reflectionContext = value; }\r
32                 }\r
33 \r
34                 #endregion // Properties\r
35 \r
36                 #region Methods\r
37 \r
38                 public abstract void ReflectMethod ();\r
39 \r
40                 #endregion\r
41         }\r
42 }\r