1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

fix intermittent issue with game interface during connection loss with servers

This commit is contained in:
RaidMax
2022-06-01 11:25:11 -05:00
parent 323aa49621
commit 4181bf1da7
7 changed files with 154 additions and 67 deletions

View File

@ -0,0 +1,12 @@
using System;
using System.Threading;
namespace IW4MAdmin.Application.Misc;
public class AsyncResult : IAsyncResult
{
public object AsyncState { get; set; }
public WaitHandle AsyncWaitHandle { get; set; }
public bool CompletedSynchronously { get; set; }
public bool IsCompleted { get; set; }
}