public ConfirmEvents(ConfirmEvents ce)
 {
     this.Time     = ce.Time;
     this.Path     = ce.Path;
     this.DiskId   = ce.DiskId;
     this.DeviceId = ce.DeviceId;
 }
예제 #2
0
 public FileMovedEv(ConfirmEvents ce, string origAppPath, ulong origDev, bool c)
     : base(ce)
 {
     this.originAppPath = origAppPath;
     this.originDevice  = origDev;
     copy = c;
 }
예제 #3
0
 public FileMovedEv(ConfirmEvents ce, XmlReader reader) : base(ce)
 {
     originAppPath = reader.GetAttribute(XmlOriginAppPath);
     originDevice  = ulong.Parse(reader.GetAttribute(XmlOriginDevice), culture);
     copy          = bool.Parse(reader.GetAttribute(XmlCopy));
 }