SoapMethodAttribute.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. //
  2. // System.Runtime.Remoting.Metadata.SoapMethodAttribute.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. using System;
  9. using System.Runtime.Remoting.Metadata;
  10. namespace System.Runtime.Remoting.Metadata {
  11. [AttributeUsage (AttributeTargets.Method)]
  12. public sealed class SoapMethodAttribute : SoapAttribute
  13. {
  14. public SoapMethodAttribute ()
  15. {
  16. }
  17. [MonoTODO]
  18. public string ResponseXmlElementName {
  19. get {
  20. throw new NotImplementedException ();
  21. }
  22. set {
  23. throw new NotImplementedException ();
  24. }
  25. }
  26. [MonoTODO]
  27. public string ResponseXmlNamespace {
  28. get {
  29. throw new NotImplementedException ();
  30. }
  31. set {
  32. throw new NotImplementedException ();
  33. }
  34. }
  35. [MonoTODO]
  36. public string ReturnXmlElementName {
  37. get {
  38. throw new NotImplementedException ();
  39. }
  40. set {
  41. throw new NotImplementedException ();
  42. }
  43. }
  44. [MonoTODO]
  45. public string SoapAction {
  46. get {
  47. throw new NotImplementedException ();
  48. }
  49. set {
  50. throw new NotImplementedException ();
  51. }
  52. }
  53. [MonoTODO]
  54. public override bool UseAttribute {
  55. get {
  56. throw new NotImplementedException ();
  57. }
  58. set {
  59. throw new NotImplementedException ();
  60. }
  61. }
  62. [MonoTODO]
  63. public override string XmlNamespace {
  64. get {
  65. throw new NotImplementedException ();
  66. }
  67. set {
  68. throw new NotImplementedException ();
  69. }
  70. }
  71. }
  72. }