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

IListSource.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0d27cfec9b5f4e9a0e4e8c75dfe17b9939fcbdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// System.ComponentModel.IListSource.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// (C) Ximian, Inc
//

using System.Collections;

namespace System.ComponentModel
{
	/// <summary>
	/// Provides functionality to an object to return a list that can be bound to a data source.
	/// </summary>
	public interface IListSource
	{
		IList GetList ();
		
		bool ContainsListCollection { get; }
	}
}