aboutsummaryrefslogtreecommitdiff
path: root/Mono.Nat/AsyncResults/AsyncResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Mono.Nat/AsyncResults/AsyncResult.cs')
-rw-r--r--Mono.Nat/AsyncResults/AsyncResult.cs71
1 files changed, 0 insertions, 71 deletions
diff --git a/Mono.Nat/AsyncResults/AsyncResult.cs b/Mono.Nat/AsyncResults/AsyncResult.cs
deleted file mode 100644
index e98e7d7ca..000000000
--- a/Mono.Nat/AsyncResults/AsyncResult.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using System.Threading;
-
-namespace Mono.Nat
-{
- internal class AsyncResult : IAsyncResult
- {
- private object asyncState;
- private AsyncCallback callback;
- private bool completedSynchronously;
- private bool isCompleted;
- private Exception storedException;
- private ManualResetEvent waitHandle;
-
- public AsyncResult(AsyncCallback callback, object asyncState)
- {
- this.callback = callback;
- this.asyncState = asyncState;
- waitHandle = new ManualResetEvent(false);
- }
-
- public object AsyncState
- {
- get { return asyncState; }
- }
-
- public ManualResetEvent AsyncWaitHandle
- {
- get { return waitHandle; }
- }
-
- WaitHandle IAsyncResult.AsyncWaitHandle
- {
- get { return waitHandle; }
- }
-
- public bool CompletedSynchronously
- {
- get { return completedSynchronously; }
- protected internal set { completedSynchronously = value; }
- }
-
- public bool IsCompleted
- {
- get { return isCompleted; }
- protected internal set { isCompleted = value; }
- }
-
- public Exception StoredException
- {
- get { return storedException; }
- }
-
- public void Complete()
- {
- Complete(storedException);
- }
-
- public void Complete(Exception ex)
- {
- storedException = ex;
- isCompleted = true;
- waitHandle.Set();
-
- if (callback != null)
- callback(this);
- }
- }
-}