Newer
Older
DNA / corlib / System / IAsyncResult.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 244 bytes First commit
#if !LOCALTEST

using System.Threading;

namespace System {
	public interface IAsyncResult {

		object AsyncState { get;}
		WaitHandle AsyncWaitHandle { get;		}
		bool CompletedSynchronously { get;		}
		bool IsCompleted { get;		}

	}
}

#endif