合并主线最近几年来的主要更新,重点推进TinyHttpClient,替代HttpClient
namespace System.Threading.Tasks { [Serializable] [Flags] public enum TaskCreationOptions { None = 0x0, PreferFairness = 0x1, LongRunning = 0x2, AttachedToParent = 0x4, DenyChildAttach = 0x8, HideScheduler = 0x10 } }