Esempio n. 1
0
 public SftpFileInfo(
     SftpFsOperation operation, string filepath,
     jsch::SftpATTRS attr, System.DateTime infodate
     )
 {
     this.operation = operation;
     this.filepath  = filepath;
     this.attr      = attr;
     this.infodate  = infodate;
 }
Esempio n. 2
0
 public SftpStatCache(SftpFsOperation operation)
 {
     this.operation = operation;
 }
Esempio n. 3
0
 //==========================================================================
 //	初期化子
 //==========================================================================
 public SftpFileInfo(SftpFsOperation operation, string filepath, jsch::SftpATTRS attr)
     : this(operation, filepath, attr, System.DateTime.Now)
 {
 }