namespace XGame.Framework.Asyncs { /// /// 可被取消的异步操作 /// public interface IAsyncCancelable { void CancelAsync(); } }