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

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

Specify all local and remote paths. That's the only case where a database is not needed as no conversions are needed.
public static CreateFromPaths ( string localPathPrefix, string localPath, string remotePathPrefix, string remotePath, bool isFolder ) : SyncItem
localPathPrefix string
localPath string
remotePathPrefix string
remotePath string
isFolder bool
Результат SyncItem
        public static SyncItem CreateFromPaths(string localPathPrefix, string localPath, string remotePathPrefix, string remotePath, bool isFolder)
        {
            return new LocalPathSyncItem(localPathPrefix, localPath, remotePathPrefix, remotePath, isFolder);
        }
    }