Ejemplo n.º 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;
 }
Ejemplo n.º 2
0
 public ClientItem(string name, string path, ClientItemType type, long size, DateTime lastWriteTime)
 {
     _name = name;
     _fpath = path;
     _type = type;
     _size = size;
     _lwt = lastWriteTime;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 4
0
 public ClientItem(string name, string path, ClientItemType type)
 {
     _name = name;
     _fpath = path;
     _type = type;
 }
Ejemplo n.º 5
0
 public ClientItem(string name, string path, ClientItemType type)
 {
     _name  = name;
     _fpath = path;
     _type  = type;
 }