public SyncEventItem(SyncEventEnum pAction, RepositoryElement pRemoteFile, bool IsDirectoryEvent, bool IsStartupEvent)
 {
     this._SyncEventId          = Guid.NewGuid();
     this._SyncEvent            = pAction;
     this.LocalElementId        = Guid.Empty;
     this._ActualEntityPathFull = null;
     this._OldFilePathFull      = null;;
     this._RemoteElement        = pRemoteFile;
     this._IsDirectoryEvent     = IsDirectoryEvent;
     this._IsStartupEvent       = IsStartupEvent;
 }
 public SyncEventItem(SyncEventEnum pAction, Guid pLocalEntityID, String pActualFilePathFull, bool IsDirectoryEvent, bool IsStartupEvent)
 {
     this._SyncEventId          = Guid.NewGuid();
     this._SyncEvent            = pAction;
     this.LocalElementId        = pLocalEntityID;
     this._ActualEntityPathFull = pActualFilePathFull;
     this._OldFilePathFull      = null;
     this._RemoteElement        = null;
     this._IsDirectoryEvent     = IsDirectoryEvent;
     this._IsStartupEvent       = IsStartupEvent;
 }
Esempio n. 3
0
 public SyncEventIgnoreItem(SyncEventEnum pAction, string pNewOrCurrentFilePathFull)
 {
     this.SyncEventId = Guid.NewGuid();
     this.Event       = pAction;
     this.NewOrCurrentFilePathFull = pNewOrCurrentFilePathFull;
 }