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.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/IAsyncResult.cs b/src/mscorlib/src/System/IAsyncResult.cs
new file mode 100644
index 0000000000..2591c726c7
--- /dev/null
+++ b/src/mscorlib/src/System/IAsyncResult.cs
@@ -0,0 +1,32 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+/*============================================================
+**
+** Interface: IAsyncResult
+**
+** Purpose: Interface to encapsulate the results of an async
+** operation
+**
+===========================================================*/
+namespace System {
+
+ using System;
+ using System.Threading;
+[System.Runtime.InteropServices.ComVisible(true)]
+ public interface IAsyncResult
+ {
+ bool IsCompleted { get; }
+
+ WaitHandle AsyncWaitHandle { get; }
+
+
+ Object AsyncState { get; }
+
+ bool CompletedSynchronously { get; }
+
+
+ }
+
+}