1234567891011121314151617181920212223242526 |
- /* ==============================================================================
- * 功能描述:FileContent
- * 创 建 者:Garrett
- * 创建日期:2019/9/16 19:25:15
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PackageUploader.Http
- {
- /// <summary>
- /// FileContent
- /// </summary>
- class FileContent
- {
- public int BufferLength { get; set; } = 1024 * 1024;
- /// <summary>
- /// 超时设置
- /// </summary>
- public int Timeout { get; set; } = 600000;
- public EventHandler<StreamProgressArgs> TransferProgress { get; set; }
- }
- }
|