DiscoveryClientResult.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // System.Web.Services.Disocvery.DiscoveryClientResult.cs
  3. //
  4. // Author:
  5. // Dave Bettin ([email protected])
  6. //
  7. // Copyright (C) Dave Bettin, 2002
  8. //
  9. using System.Xml.Serialization;
  10. namespace System.Web.Services.Discovery {
  11. public sealed class DiscoveryClientResult {
  12. #region Fields
  13. private string filename;
  14. private string referenceTypeName;
  15. private string url;
  16. #endregion // Fields
  17. #region Constructors
  18. [MonoTODO]
  19. public DiscoveryClientResult ()
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public DiscoveryClientResult (Type referenceType, string url, string filename) : this()
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. #endregion // Constructors
  29. #region Properties
  30. [XmlAttribute("filename")]
  31. public string Filename {
  32. get { return filename; }
  33. set { filename = value; }
  34. }
  35. [XmlAttribute("referenceType")]
  36. public string ReferenceTypeName {
  37. get { return referenceTypeName; }
  38. set { referenceTypeName = value; }
  39. }
  40. [XmlAttribute("url")]
  41. public string Url {
  42. get { return url; }
  43. set { url = value; }
  44. }
  45. #endregion // Properties
  46. }
  47. }