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

IMessage.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: d1a5c0c12076cdf0c24d4d84a90eb2816154f136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Runtime.Remoting.Messaging.IMessage.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

using System.Collections;

namespace System.Runtime.Remoting.Messaging {

	public interface IMessage {

		IDictionary Properties {
			get;
		}
	}
}