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

IObjectReference.cs « System.Runtime.Serialization « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59f5a0200b4ef6cc78c7385adde716a9056d711b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// System.Runtime.Serialization.IObjectReference.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

namespace System.Runtime.Serialization {

	public interface IObjectReference {
		object GetRealObject (StreamingContext context);
	}
}