1234567891011121314151617181920 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- namespace GameFramework.WebRequest
- {
- /// <summary>
- /// Web 请求相关常量。
- /// </summary>
- internal static class Constant
- {
- /// <summary>
- /// 默认 Web 请求任务优先级。
- /// </summary>
- internal const int DefaultPriority = 0;
- }
- }
|