| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.IO;
- using System.Threading;
- namespace HslCommunication.Core.Net
- {
- /// <summary>
- /// 文件传送的异步对象
- /// </summary>
- internal class FileStateObject : StateOneBase
- {
- /// <summary>
- /// 操作的流
- /// </summary>
- public Stream Stream { get; set; }
-
- }
- }
|