Updater.Properties.cs 527 B

123456789101112131415161718192021222324
  1. using System.Text;
  2. namespace Update.Core
  3. {
  4. partial class Updater
  5. {
  6. /// <summary>
  7. /// 获取或设置上传或下载时字符串编码方式,默认为 UTF-8
  8. /// </summary>
  9. public Encoding Encoding
  10. {
  11. get
  12. {
  13. this.CheckDisposed();
  14. return this.m_Client.Encoding;
  15. }
  16. set
  17. {
  18. this.CheckDisposed();
  19. this.m_Client.Encoding = value;
  20. }
  21. }
  22. }
  23. }