LogicalMethodInfo.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. //
  2. // System.Web.Services.Protocols.LogicalMethodInfo.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Reflection;
  10. using System.Web.Services;
  11. namespace System.Web.Services.Protocols {
  12. public sealed class LogicalMethodInfo {
  13. #region Fields
  14. #endregion // Fields
  15. #region Constructors
  16. public LogicalMethodInfo (MethodInfo methodInfo)
  17. {
  18. }
  19. #endregion // Constructors
  20. #region Properties
  21. public ParameterInfo AsyncCallbackParameter {
  22. [MonoTODO]
  23. get { throw new NotImplementedException (); }
  24. }
  25. public ParameterInfo AsyncResultParameter {
  26. [MonoTODO]
  27. get { throw new NotImplementedException (); }
  28. }
  29. public ParameterInfo AsyncStateParameter {
  30. [MonoTODO]
  31. get { throw new NotImplementedException (); }
  32. }
  33. public MethodInfo BeginMethodInfo {
  34. [MonoTODO]
  35. get { throw new NotImplementedException (); }
  36. }
  37. public ICustomAttributeProvider CustomAttributeProvider {
  38. [MonoTODO]
  39. get { throw new NotImplementedException (); }
  40. }
  41. public Type DeclaringType {
  42. [MonoTODO]
  43. get { throw new NotImplementedException (); }
  44. }
  45. public MethodInfo EndMethodInfo {
  46. [MonoTODO]
  47. get { throw new NotImplementedException (); }
  48. }
  49. public ParameterInfo[] InParameters {
  50. [MonoTODO]
  51. get { throw new NotImplementedException (); }
  52. }
  53. public bool IsAsync {
  54. [MonoTODO]
  55. get { throw new NotImplementedException (); }
  56. }
  57. public bool IsVoid {
  58. [MonoTODO]
  59. get { throw new NotImplementedException (); }
  60. }
  61. public MethodInfo MethodInfo {
  62. [MonoTODO]
  63. get { throw new NotImplementedException (); }
  64. }
  65. public string Name {
  66. [MonoTODO]
  67. get { throw new NotImplementedException (); }
  68. }
  69. public ParameterInfo[] OutParameters {
  70. [MonoTODO]
  71. get { throw new NotImplementedException (); }
  72. }
  73. public ParameterInfo[] Parameters {
  74. [MonoTODO]
  75. get { throw new NotImplementedException (); }
  76. }
  77. public Type ReturnType {
  78. [MonoTODO]
  79. get { throw new NotImplementedException (); }
  80. }
  81. public ICustomAttributeProvider ReturnTypeCustomAttributeProvider {
  82. [MonoTODO]
  83. get { throw new NotImplementedException (); }
  84. }
  85. #endregion // Properties
  86. #region Methods
  87. [MonoTODO]
  88. public IAsyncResult BeginInvoke (object target, object[] values, AsyncCallback callback, object asyncState)
  89. {
  90. throw new NotImplementedException ();
  91. }
  92. [MonoTODO]
  93. public static LogicalMethodInfo[] Create (MethodInfo[] methodInfos)
  94. {
  95. throw new NotImplementedException ();
  96. }
  97. [MonoTODO]
  98. public static LogicalMethodInfo[] Create (MethodInfo[] methodInfos, LogicalMethodTypes types)
  99. {
  100. throw new NotImplementedException ();
  101. }
  102. [MonoTODO]
  103. public object[] EndInvoke (object target, IAsyncResult asyncResult)
  104. {
  105. throw new NotImplementedException ();
  106. }
  107. [MonoTODO]
  108. public object GetCustomAttribute (Type type)
  109. {
  110. throw new NotImplementedException ();
  111. }
  112. [MonoTODO]
  113. public object[] GetCustomAttributes (Type type)
  114. {
  115. throw new NotImplementedException ();
  116. }
  117. [MonoTODO]
  118. public object[] Invoke (object target, object[] values)
  119. {
  120. throw new NotImplementedException ();
  121. }
  122. [MonoTODO]
  123. public static bool IsBeginMethod (MethodInfo methodInfo)
  124. {
  125. throw new NotImplementedException ();
  126. }
  127. [MonoTODO]
  128. public static bool IsEndMethod (MethodInfo methodInfo)
  129. {
  130. throw new NotImplementedException ();
  131. }
  132. [MonoTODO]
  133. public override string ToString ()
  134. {
  135. throw new NotImplementedException ();
  136. }
  137. #endregion // Methods
  138. }
  139. }