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

ITypeDescriptorContext.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a42cca94ec145c213a40c232d4084639688a4c85 (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
29
//
// System.ComponentModel.ITypeDescriptorContext
//
// Authors:
//	Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// (C) 2002 Ximian, Inc (http://www.ximian.com)
//

using System;

namespace System.ComponentModel
{

public interface ITypeDescriptorContext : IServiceProvider
{
	IContainer Container { get; }

	object Instance { get; }

	PropertyDescriptor PropertyDescriptor { get; }

	void OnComponentChanged ();

	void OnComponentChanging ();
}

}