<PackageReference Include="NETStandard.Library" Version="2.0.2" />
System.IAsyncResult
namespace System
{
public interface IAsyncResult
{
object AsyncState { get; }
WaitHandle AsyncWaitHandle { get; }
bool CompletedSynchronously { get; }
bool IsCompleted { get; }
}
}