必须填写至少10个字的日志
nnhy 编写于 2012-07-27 18:48:21
X
using System;
using System.Collections.Generic;
using System.Text;

namespace NewLife.Net.FTP
{
    /// <summary>传输模式</summary>
    public enum FTPTransferMode
    {
        /// <summary>主动。服务器主动连接客户端</summary>
        Active,

        /// <summary>被动。客户端连接服务器</summary>
        Passive
    }
}