| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Web.Services.Description.SoapExtensionReflector.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.Web.Services.Description {
- public abstract class SoapExtensionReflector {
- #region Fields
- ProtocolReflector reflectionContext;
-
- #endregion // Fields
- #region Constructors
-
- protected SoapExtensionReflector ()
- {
- }
-
- #endregion // Constructors
- #region Properties
- public ProtocolReflector ReflectionContext {
- get { return reflectionContext; }
- set { reflectionContext = value; }
- }
- #endregion // Properties
- #region Methods
- public abstract void ReflectMethod ();
- #endregion
- }
- }
|