1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 16:40:26 +02:00
Beef/BeefLibs/corlib/src/IAsyncResult.bf

25 lines
631 B
Beef

// ==++==
//
// 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;
public interface IAsyncResult
{
bool IsCompleted { get; }
WaitEvent AsyncWaitHandle { get; }
Object AsyncState { get; }
bool CompletedSynchronously { get; }
}
}