singrdk/base/Applications/Runtime/Full/System/IAsyncResult.cs

40 lines
1.0 KiB
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
2008-11-17 18:29:00 -05:00
//============================================================
//
// Interface: IAsyncResult
//
// Purpose: Interface to encapsulate the results of an async
// operation
//
//===========================================================
namespace System
{
2008-03-05 09:52:00 -05:00
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; }
}
}