예제 #1
0
파일: LockMessage.cs 프로젝트: nandub/DeOps
        public LockMessage(StorageView view, LockErrorType type, List <LockError> errors)
        {
            InitializeComponent();

            ParentView = view;
            Storages   = view.Storages;
            Type       = type;
            Errors     = errors;

            RootPath = view.Storages.GetRootPath(view.UserID, view.ProjectID);
        }
예제 #2
0
        public LockMessage(StorageView view, LockErrorType type, List<LockError> errors)
        {
            InitializeComponent();

            ParentView = view;
            Storages = view.Storages;
            Type = type;
            Errors = errors;

            RootPath = view.Storages.GetRootPath(view.UserID, view.ProjectID);
        }
예제 #3
0
 // used for unexpected (file) and existing errors
 public LockError(string path, string message, bool isFile, LockErrorType type, StorageFile file, bool history)
 {
     Path = path;
     Message = message;
     IsFile = isFile;
     Type = type;
     File = file;
     History = history;
 }
예제 #4
0
 public LockError(string path, string message, bool isFile, LockErrorType type)
 {
     Path = path;
     Message = message;
     IsFile = isFile;
     Type = type;
 }