ServiceDescriptionReflector.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // System.Web.Services.Description.ServiceDescriptionReflector.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Web.Services;
  10. using System.Xml.Serialization;
  11. namespace System.Web.Services.Description {
  12. public class ServiceDescriptionReflector {
  13. #region Fields
  14. XmlSchemas schemas;
  15. ServiceDescriptionCollection serviceDescriptions;
  16. #endregion // Fields
  17. #region Constructors
  18. public ServiceDescriptionReflector ()
  19. {
  20. schemas = new XmlSchemas ();
  21. serviceDescriptions = new ServiceDescriptionCollection ();
  22. }
  23. #endregion // Constructors
  24. #region Properties
  25. public XmlSchemas Schemas {
  26. get { return schemas; }
  27. }
  28. public ServiceDescriptionCollection ServiceDescriptions {
  29. get { return serviceDescriptions; }
  30. }
  31. #endregion // Properties
  32. #region Methods
  33. [MonoTODO]
  34. public void Reflect (Type type, string url)
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. #endregion
  39. }
  40. }