2
0

SoapFieldAttribute.cs 801 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // System.Runtime.Remoting.Metadata.SoapFieldAttribute.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. using System.Runtime.Remoting.Metadata;
  9. namespace System.Runtime.Remoting.Metadata {
  10. [AttributeUsage (AttributeTargets.Field)]
  11. public sealed class SoapFieldAttribute : SoapAttribute
  12. {
  13. public SoapFieldAttribute ()
  14. {
  15. }
  16. [MonoTODO]
  17. public int Order {
  18. get {
  19. throw new NotImplementedException ();
  20. }
  21. set {
  22. throw new NotImplementedException ();
  23. }
  24. }
  25. [MonoTODO]
  26. public string XmlElementName {
  27. get {
  28. throw new NotImplementedException ();
  29. }
  30. set {
  31. throw new NotImplementedException ();
  32. }
  33. }
  34. [MonoTODO]
  35. public bool IsInteropXmlElement ()
  36. {
  37. throw new NotImplementedException ();
  38. }
  39. }
  40. }