CmisSync.Lib.SyncItemFactory.CreateFromRemoteDocument C# (CSharp) Метод

CreateFromRemoteDocument() публичный статический Метод

Only use for documents!
public static CreateFromRemoteDocument ( string remoteDocumentPath, string localFilename, RepoInfo repoInfo, Database database ) : SyncItem
remoteDocumentPath string
localFilename string
repoInfo RepoInfo
database Database
Результат SyncItem
        public static SyncItem CreateFromRemoteDocument(string remoteDocumentPath, string localFilename, RepoInfo repoInfo, Database.Database database)
        {
            string remoteFolderPath = remoteDocumentPath.Substring(0, remoteDocumentPath.LastIndexOf(CmisUtils.CMIS_FILE_SEPARATOR));
            string remoteDocumentName = remoteDocumentPath.Substring(remoteDocumentPath.LastIndexOf(CmisUtils.CMIS_FILE_SEPARATOR) + 1); // 1 is the length of CMIS_FILE_SEPARATOR as it is a character

            RemotePathSyncItem item = new RemotePathSyncItem(remoteFolderPath, remoteDocumentName, localFilename, false, repoInfo, database);
            return item;
        }

Same methods

SyncItemFactory::CreateFromRemoteDocument ( string remoteDocumentPath, IDocument remoteDocument, RepoInfo repoInfo, Database database ) : SyncItem