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

ISynchronizeInvoke.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5cad4e0739fd2b47e8cf5a3298e6fc7da63eee6 (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
//
// System.ComponentModel.ISynchronizeInvoke.cs
//
// Authors:
//	Dick Porter (dick@ximian.com)
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

using System;

namespace System.ComponentModel 
{
	public interface ISynchronizeInvoke 
	{
		bool InvokeRequired {
			get;
		}

		IAsyncResult BeginInvoke(Delegate method, object[] args);

		object EndInvoke(IAsyncResult result);

		object Invoke(Delegate method, object[] args);
	}
}