Constant.cs 586 B

1234567891011121314151617181920
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 Jiang Yin. All rights reserved.
  4. // Homepage: https://gameframework.cn/
  5. // Feedback: mailto:ellan@gameframework.cn
  6. //------------------------------------------------------------
  7. namespace GameFramework.WebRequest
  8. {
  9. /// <summary>
  10. /// Web 请求相关常量。
  11. /// </summary>
  12. internal static class Constant
  13. {
  14. /// <summary>
  15. /// 默认 Web 请求任务优先级。
  16. /// </summary>
  17. internal const int DefaultPriority = 0;
  18. }
  19. }