SoapAttribute.cs 860 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // System.Runtime.Remoting.Metadata.SoapAttribute.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. using System;
  9. namespace System.Runtime.Remoting.Metadata {
  10. public class SoapAttribute : Attribute
  11. {
  12. public SoapAttribute ()
  13. {
  14. }
  15. protected string ProtXmlNamespace;
  16. protected object ReflectInfo;
  17. [MonoTODO]
  18. public virtual bool Embedded {
  19. get {
  20. throw new NotImplementedException ();
  21. }
  22. set {
  23. throw new NotImplementedException ();
  24. }
  25. }
  26. [MonoTODO]
  27. public virtual bool UseAttribute {
  28. get {
  29. throw new NotImplementedException ();
  30. }
  31. set {
  32. throw new NotImplementedException ();
  33. }
  34. }
  35. [MonoTODO]
  36. public virtual string XmlNamespace {
  37. get {
  38. throw new NotImplementedException ();
  39. }
  40. set {
  41. throw new NotImplementedException ();
  42. }
  43. }
  44. }
  45. }