Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IMethodCallMessage.cs « System.Runtime.Remoting.Messaging « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f0846ca6639b700c2d29b1d9e1cf085c1d8fd9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// System.Runtime.Remoting.Messaging.IMethodCallMessage.cs
//
// Author:
//   Dietmar Maurer (dietmar@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

using System.Reflection;

namespace System.Runtime.Remoting.Messaging {

	public interface IMethodCallMessage : IMethodMessage, IMessage {

		int InArgCount {
			get;
		}
		
		object [] InArgs {
			get;
		}
		
		object GetInArg (int arg_num);
		string GetInArgName (int arg_num);
	}
}