CmisSync.Lib.Sync.CmisRepo.SynchronizedFolder.ResumeUploadFile C# (CSharp) Метод

ResumeUploadFile() приватный Метод

private ResumeUploadFile ( string filePath, IDocument remoteDocument ) : bool
filePath string
remoteDocument IDocument
Результат bool
            private bool ResumeUploadFile(string filePath, IDocument remoteDocument)
            {
                Logger.Debug("Resuming Upload: " + filePath + " to remote document: " + remoteDocument.Name);
                if (repoInfo.ChunkSize <= 0)
                {
                    return UpdateFile(filePath, remoteDocument);
                }

                // disable the chunk upload
                return UpdateFile(filePath, remoteDocument);
            }