摘要: 接上篇Windows store app[Part 3]:认识WinRT的异步机制WinRT异步机制回顾:IAsyncInfo接口:WinRT下异步功能的核心,该接口提供所有异步操作的基本功能,如标识、状态、操作。IAsyncInfo:1 public interface IAsyncInfo2 {3 AsyncStatus Status { get; }4 HResult ErrorCode { get; }5 uint Id { get; }6 7 void Cancel();8 void Close();9 }IAsyncInfo没有定义当操作完成... 阅读全文
posted @ 2013-08-01 14:32 老鱼_678 阅读(1003) 评论(2) 推荐(0) 编辑