| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- //
- // System.Web.Services.Protocols.LogicalMethodInfo.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Reflection;
- using System.Web.Services;
- namespace System.Web.Services.Protocols {
- public sealed class LogicalMethodInfo {
- #region Fields
- #endregion // Fields
- #region Constructors
-
- public LogicalMethodInfo (MethodInfo methodInfo)
- {
- }
-
- #endregion // Constructors
- #region Properties
- public ParameterInfo AsyncCallbackParameter {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public ParameterInfo AsyncResultParameter {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public ParameterInfo AsyncStateParameter {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public MethodInfo BeginMethodInfo {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public ICustomAttributeProvider CustomAttributeProvider {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public Type DeclaringType {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public MethodInfo EndMethodInfo {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public ParameterInfo[] InParameters {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public bool IsAsync {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public bool IsVoid {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public MethodInfo MethodInfo {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public string Name {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public ParameterInfo[] OutParameters {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public ParameterInfo[] Parameters {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public Type ReturnType {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public ICustomAttributeProvider ReturnTypeCustomAttributeProvider {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public IAsyncResult BeginInvoke (object target, object[] values, AsyncCallback callback, object asyncState)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static LogicalMethodInfo[] Create (MethodInfo[] methodInfos)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static LogicalMethodInfo[] Create (MethodInfo[] methodInfos, LogicalMethodTypes types)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object[] EndInvoke (object target, IAsyncResult asyncResult)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object GetCustomAttribute (Type type)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object[] GetCustomAttributes (Type type)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object[] Invoke (object target, object[] values)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static bool IsBeginMethod (MethodInfo methodInfo)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static bool IsEndMethod (MethodInfo methodInfo)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override string ToString ()
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|