| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // System.Runtime.Remoting.Messaging.IMethodMessage..cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System.Reflection;
- namespace System.Runtime.Remoting.Messaging {
- public interface IMethodMessage : IMessage {
- int ArgCount {
- get;
- }
-
- object [] Args {
- get;
- }
-
- bool HasVarArgs {
- get;
- }
- LogicalCallContext LogicalCallContext {
- get;
- }
- MethodBase MethodBase {
- get;
- }
- string MethodName {
- get;
- }
- object MethodSignature {
- get;
- }
- string TypeName {
- get;
- }
- string Uri {
- get;
- }
- object GetArg (int arg_num);
- string GetArgName (int arg_num);
- }
- }
|