internal FtpMethodInfo(string method, FtpOperation operation, FtpMethodFlags flags, string httpCommand)
 {
     this.Method      = method;
     this.Operation   = operation;
     this.Flags       = flags;
     this.HttpCommand = httpCommand;
 }
 internal FtpMethodInfo(string method, FtpOperation operation, FtpMethodFlags flags, string httpCommand)
 {
     this.Method = method;
     this.Operation = operation;
     this.Flags = flags;
     this.HttpCommand = httpCommand;
 }
示例#3
0
 internal FtpMethodInfo(string method,
                        FtpOperation operation,
                        FtpMethodFlags flags,
                        string httpCommand)
 {
     Method = method;
     Operation = operation;
     Flags = flags;
     HttpCommand = httpCommand;
 }
示例#4
0
 internal bool HasFlag(FtpMethodFlags flags)
 {
     return (Flags & flags) != 0;
 }
 internal bool HasFlag(FtpMethodFlags flags)
 {
     return((this.Flags & flags) != FtpMethodFlags.None);
 }
 internal bool HasFlag(FtpMethodFlags flags)
 {
     return ((this.Flags & flags) != FtpMethodFlags.None);
 }