SoapAttributeOverrides.cs 893 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // SoapAttributeOverrides.cs:
  3. //
  4. // Author:
  5. // John Donagher ([email protected])
  6. //
  7. // (C) 2002 John Donagher
  8. //
  9. using System;
  10. namespace System.Xml.Serialization
  11. {
  12. /// <summary>
  13. /// Summary description for SoapAttributeOverrides.
  14. /// </summary>
  15. public class SoapAttributeOverrides
  16. {
  17. public SoapAttributeOverrides ()
  18. {
  19. }
  20. [MonoTODO]
  21. public SoapAttributes this [Type type]
  22. {
  23. get {
  24. throw new NotImplementedException ();
  25. }
  26. }
  27. [MonoTODO]
  28. public SoapAttributes this [Type type, string member] {
  29. get {
  30. throw new NotImplementedException ();
  31. }
  32. }
  33. [MonoTODO]
  34. public void Add (Type type, SoapAttributes attributes)
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. [MonoTODO]
  39. public void Add (Type type, string member, SoapAttributes attributes)
  40. {
  41. throw new NotImplementedException ();
  42. }
  43. }
  44. }