public ConfirmEvents(ConfirmEvents ce) { this.Time = ce.Time; this.Path = ce.Path; this.DiskId = ce.DiskId; this.DeviceId = ce.DeviceId; }
public FileMovedEv(ConfirmEvents ce, string origAppPath, ulong origDev, bool c) : base(ce) { this.originAppPath = origAppPath; this.originDevice = origDev; copy = c; }
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)); }