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

ICustomTypeDescriptor.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c716355a6012ff8905a1e3c98dedc77cbbc0b6e9 (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
30
31
32
33
34
35
36
37
38
//
// System.ComponentModel.ICustomTypeDescriptor.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//
// Authors:
//   Rodrigo Moya (rodrigo@ximian.com)
//

namespace System.ComponentModel
{
	public interface ICustomTypeDescriptor
	{
		AttributeCollection GetAttributes();

		string GetClassName();

		string GetComponentName();

		TypeConverter GetConverter();

		EventDescriptor GetDefaultEvent();

		PropertyDescriptor GetDefaultProperty();

		object GetEditor(Type editorBaseType);

		EventDescriptorCollection GetEvents();

		EventDescriptorCollection GetEvents(Attribute[] arr);

		PropertyDescriptorCollection GetProperties();

		PropertyDescriptorCollection GetProperties(Attribute[] arr);

		object GetPropertyOwner(PropertyDescriptor pd);
	}
}