public static SfbSavedLocationEntry FromFileSystemEntry(SfbSavedLocationType locationType, SfbFileSystemEntry fileSystemEntry)
 {
     return new SfbSavedLocationEntry(locationType, fileSystemEntry.path, fileSystemEntry.hidden, fileSystemEntry.type);
 }
 private SfbSavedLocationEntry(SfbSavedLocationType locationType, DateTime savedDate, string path, bool hidden, SfbFileSystemEntryType type)
     : base(path, hidden, type)
 {
     this.locationType = locationType;
     this.savedDate = savedDate;
 }
 public SfbSavedLocationEntry(SfbSavedLocationType locationType, string path, bool hidden, SfbFileSystemEntryType type)
     : base(path, hidden, type)
 {
     this.locationType = locationType;
     savedDate = DateTime.Now;
 }
예제 #4
0
 public SfbSavedLocationEntry(SfbSavedLocationType locationType, string path, bool hidden, SfbFileSystemEntryType type) : base(path, hidden, type)
 {
     this.locationType = locationType;
     savedDate         = DateTime.Now;
 }
예제 #5
0
 public static SfbSavedLocationEntry FromFileSystemEntry(SfbSavedLocationType locationType, SfbFileSystemEntry fileSystemEntry)
 {
     return(new SfbSavedLocationEntry(locationType, fileSystemEntry.path, fileSystemEntry.hidden, fileSystemEntry.type));
 }
예제 #6
0
 private SfbSavedLocationEntry(SfbSavedLocationType locationType, DateTime savedDate, string path, bool hidden, SfbFileSystemEntryType type) : base(path, hidden, type)
 {
     this.locationType = locationType;
     this.savedDate    = savedDate;
 }