CmisSync.Lib.Database.Database.SetRemotePathPrefix C# (CSharp) Method

SetRemotePathPrefix() private method

Sets the reomte path prefix.
private SetRemotePathPrefix ( string pathprefix ) : void
pathprefix string /// Pathprefix. ///
return void
        private void SetRemotePathPrefix(string pathprefix)
        {
            SetGeneralTableValue(RemotePathPrefixKey, pathprefix);
            this.remotePathPrefix = pathprefix;
            this.remotePathPrefixSize = pathprefix.Length + 1;
        }