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

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

namespace System.ComponentModel
{
	/// <summary>
	/// Specifies that this object supports a simple, transacted notification for batch initialization.
	/// </summary>
	public interface ISupportInitialize
	{
		void BeginInit ();

		void EndInit ();
	}
		
}