CmisSync.Lib.Database.Database.DenormalizeRemotePath C# (CSharp) Метод

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

Denormalizes a remote path from the normalized one to a remote path.
private DenormalizeRemotePath ( string path ) : string
path string normalized remote path
Результат string
        private string DenormalizeRemotePath(string path)
        {
            if (null == path)
            {
                return null;
            }

            if (Path.IsPathRooted(path))
            {
                return path;
            }

            return Path.Combine(remotePathPrefix, path);
        }