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

IEnvoyInfo.cs « System.Runtime.Remoting « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d66709ae621902efc797f731adffed885fbe2e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// System.Runtime.Remoting.IEnvoyInfo.cs
//
// AUthor: Duncan Mak  (duncan@ximian.com)
//
// 2002 (C) Copyright. Ximian, Inc.
//

using System.Runtime.Remoting.Messaging;

namespace System.Runtime.Remoting {

	public interface IEnvoyInfo
	{
		IMessageSink EnvoySinks { get; set; }
	}
}