singrdk/base/Kernel/System/IAsyncResult.cs

39 lines
1.0 KiB
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Interface: IAsyncResult
**
** Purpose: Interface to encapsulate the results of an async
** operation
**
===========================================================*/
namespace System {
using System;
using System.Threading;
//| <include path='docs/doc[@for="IAsyncResult"]/*' />
[CLSCompliant(false)]
public interface IAsyncResult
{
//| <include path='docs/doc[@for="IAsyncResult.IsCompleted"]/*' />
bool IsCompleted { get; }
//| <include path='docs/doc[@for="IAsyncResult.AsyncWaitHandle"]/*' />
WaitHandle AsyncWaitHandle { get; }
//| <include path='docs/doc[@for="IAsyncResult.AsyncState"]/*' />
Object AsyncState { get; }
//| <include path='docs/doc[@for="IAsyncResult.CompletedSynchronously"]/*' />
bool CompletedSynchronously { get; }
}
}