| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //------------------------------------------------------------------------------
- //
- // System.IAsyncResult.cs
- //
- // Copyright (C) 2001 Michael Lambert, All Rights Reserved
- //
- // Author: Michael Lambert, [email protected]
- // Created: Mon 08/24/2001
- //
- //------------------------------------------------------------------------------
- using System;
- using System.Threading;
- namespace System {
- public interface IAsyncResult
- {
- object AsyncState
- {
- get;
- }
- WaitHandle AsyncWaitHandle
- {
- get;
- }
- bool CompletedSynchronously
- {
- get;
- }
- bool IsCompleted
- {
- get;
- }
- }
- } // Namespace System
|