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

ITypedList.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ecdeeef7ebc60271688659fe4e89ccb0b0a5ba9 (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
//
// System.ComponentModel.ITypedList.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// (C) Ximian, Inc
//

using System.Collections;

namespace System.ComponentModel
{
	/// <summary>
	/// Provides functionality to discover the schema for a bindable list, where the properties available for binding differ from the public properties of the object to bind to. For instance, using a DataView object that represents a customer table, you want to bind to the properties on the customer object that the DataView represents, not the properties of the DataView.
	/// </summary>
	public interface ITypedList
	{
		PropertyDescriptorCollection GetItemProperties (
			PropertyDescriptor[] listAccessors);

		string GetListName (PropertyDescriptor[] listAccessors);
	}
}