SoapAttributes.cs 860 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // SoapAttributes.cs:
  3. //
  4. // Author:
  5. // John Donagher ([email protected])
  6. //
  7. // (C) 2002 John Donagher
  8. //
  9. using System.Reflection;
  10. using System;
  11. namespace System.Xml.Serialization
  12. {
  13. /// <summary>
  14. /// Summary description for SoapAttributes.
  15. /// </summary>
  16. public class SoapAttributes
  17. {
  18. private SoapAttributeAttribute soapAttribute;
  19. private object soapDefaultValue;
  20. public SoapAttributes ()
  21. {
  22. }
  23. [MonoTODO]
  24. public SoapAttributes (ICustomAttributeProvider provider)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. public SoapAttributeAttribute SoapAttribute
  29. {
  30. get {
  31. return soapAttribute;
  32. }
  33. set {
  34. soapAttribute = value;
  35. }
  36. }
  37. public object SoapDefaultValue {
  38. get {
  39. return soapDefaultValue;
  40. }
  41. set {
  42. soapDefaultValue = value;
  43. }
  44. }
  45. }
  46. }