| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- //
- // System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System;
- using System.Collections;
- using System.Reflection;
- namespace System.Runtime.Remoting.Messaging {
- public class MethodCallMessageWrapper : InternalMessageWrapper, IMethodCallMessage, IMethodMessage, IMessage
- {
- public MethodCallMessageWrapper (IMethodCallMessage msg)
- : base (msg)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public virtual int ArgCount {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual object [] Args {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public virtual bool HasVarArgs {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual int InArgCount {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual object [] InArgs {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public virtual LogicalCallContext LogicalCallContext {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public virtual MethodBase MethodBase {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual string MethodName {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual object MethodSignature {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public virtual IDictionary Properties {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual string TypeName {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual string Uri {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual object GetArg (int argNum)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual string GetArgName (int index)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual object GetInArg (int argNum)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual string GetInArgName (int index)
- {
- throw new NotImplementedException ();
- }
- }
- }
|