summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/IAsyncResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/IAsyncResult.cs')
-rw-r--r--src/mscorlib/src/System/IAsyncResult.cs18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/mscorlib/src/System/IAsyncResult.cs b/src/mscorlib/src/System/IAsyncResult.cs
index 2591c726c7..0abeaca525 100644
--- a/src/mscorlib/src/System/IAsyncResult.cs
+++ b/src/mscorlib/src/System/IAsyncResult.cs
@@ -10,11 +10,12 @@
** operation
**
===========================================================*/
-namespace System {
-
- using System;
- using System.Threading;
-[System.Runtime.InteropServices.ComVisible(true)]
+
+using System;
+using System.Threading;
+
+namespace System
+{
public interface IAsyncResult
{
bool IsCompleted { get; }
@@ -22,11 +23,8 @@ namespace System {
WaitHandle AsyncWaitHandle { get; }
- Object AsyncState { get; }
+ Object AsyncState { get; }
- bool CompletedSynchronously { get; }
-
-
+ bool CompletedSynchronously { get; }
}
-
}