SpanProperty.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //
  2. // System.Data.ObjectSpaces.Query.SpanProperty
  3. //
  4. //
  5. // Author:
  6. // Richard Thombs ([email protected])
  7. //
  8. #if NET_1_2
  9. using System;
  10. using System.Xml;
  11. namespace System.Data.ObjectSpaces.Query
  12. {
  13. [MonoTODO()]
  14. public class SpanProperty
  15. {
  16. public SpanProperty parent;
  17. [MonoTODO()]
  18. public SpanProperty(string name)
  19. {
  20. throw new NotImplementedException();
  21. }
  22. [MonoTODO()]
  23. public SpanProperty(string name,SpanPropertyCollection subSpan)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. [MonoTODO()]
  28. public string ToXmlString()
  29. {
  30. throw new NotImplementedException();
  31. }
  32. [MonoTODO()]
  33. public void WriteXml(XmlWriter xmlw)
  34. {
  35. throw new NotImplementedException();
  36. }
  37. [MonoTODO()]
  38. public string FullName
  39. {
  40. get { throw new NotImplementedException(); }
  41. }
  42. [MonoTODO()]
  43. public string Name
  44. {
  45. get { throw new NotImplementedException(); }
  46. set { throw new NotImplementedException(); }
  47. }
  48. [MonoTODO()]
  49. public SpanProperty Owner
  50. {
  51. get { throw new NotImplementedException(); }
  52. }
  53. [MonoTODO()]
  54. public SpanPropertyCollection SubSpan
  55. {
  56. get { throw new NotImplementedException(); }
  57. }
  58. }
  59. }
  60. #endif