| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- //
- // System.Runtime.Remoting.Messaging.MethodCall.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System;
- using System.Collections;
- using System.Reflection;
- using System.Runtime.Serialization;
- namespace System.Runtime.Remoting.Messaging {
- [Serializable] [CLSCompliant (false)]
- public class MethodCall : IMethodCallMessage, IMethodMessage, IMessage, ISerializable
- {
- public MethodCall (Header [] headers)
- {
- }
- public MethodCall (IMessage msg)
- {
- }
- protected IDictionary ExternalProperties;
- protected IDictionary InternalProperties;
- [MonoTODO]
- public int ArgCount {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public object[] Args {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public bool HasVarArgs {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public int InArgCount {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public object[] InArgs {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public LogicalCallContext LogicalCallContext {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public MethodBase MethodBase {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string MethodName {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public object MethodSignature {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public virtual IDictionary Properties {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string TypeName {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string Uri {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public object GetArg (int argNum)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public string GetArgName (int index)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object GetInArg (int argNum)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public string GetInArgName (int index)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void GetObjectData (SerializationInfo info, StreamingContext context)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual object HeaderHandler (Header[] h)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void Init ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void ResolveMethod ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void RootSetObjectData (SerializationInfo info, StreamingContext context)
- {
- throw new NotImplementedException ();
- }
- }
- }
|