Beispiel #1
0
 public ClientItem(string name, string path, ClientItemType type, long size = 0x0, DateTime lastWriteTime = default(DateTime))
 {
     Name = name;
     FullPath = path;
     Type = type;
     Size = size;
     LastWriteTime = lastWriteTime;
 }
Beispiel #2
0
 public ClientItem(string name, string path, ClientItemType type, long size, DateTime lastWriteTime)
 {
     _name = name;
     _fpath = path;
     _type = type;
     _size = size;
     _lwt = lastWriteTime;
 }
Beispiel #3
0
 public ClientItem(string name, string path, ClientItemType type, long size = 0x0, DateTime lastWriteTime = default(DateTime))
 {
     Name          = name;
     FullPath      = path;
     Type          = type;
     Size          = size;
     LastWriteTime = lastWriteTime;
 }
Beispiel #4
0
 public ClientItem(string name, string path, ClientItemType type)
 {
     _name = name;
     _fpath = path;
     _type = type;
 }
Beispiel #5
0
 public ClientItem(string name, string path, ClientItemType type)
 {
     _name  = name;
     _fpath = path;
     _type  = type;
 }