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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.ComponentModel/ISynchronizeInvoke.cs')
-rwxr-xr-xmcs/class/System/System.ComponentModel/ISynchronizeInvoke.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/mcs/class/System/System.ComponentModel/ISynchronizeInvoke.cs b/mcs/class/System/System.ComponentModel/ISynchronizeInvoke.cs
deleted file mode 100755
index e5cad4e0739..00000000000
--- a/mcs/class/System/System.ComponentModel/ISynchronizeInvoke.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-//
-// 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);
- }
-}