当前位置: 首页>>代码示例>>C#>>正文


C# IDocument.UpdateProperties方法代码示例

本文整理汇总了C#中IDocument.UpdateProperties方法的典型用法代码示例。如果您正苦于以下问题:C# IDocument.UpdateProperties方法的具体用法?C# IDocument.UpdateProperties怎么用?C# IDocument.UpdateProperties使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IDocument的用法示例。


在下文中一共展示了IDocument.UpdateProperties方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RenameDocument

        public IDocument RenameDocument(IDocument source, string name)
        {
            Dictionary<string, object> properties = new Dictionary<string, object>();
            properties.Add(PropertyIds.Name, name);

            return (IDocument)source.UpdateProperties(properties);
        }
开发者ID:pcreignou,项目名称:CmisSync,代码行数:7,代码来源:CmisSyncTests.cs

示例2: RenameFile

            /// <summary>
            /// Rename a file remotely.
            /// </summary>
            private bool RenameFile(string directory, string newFilename, IDocument remoteFile)
            {
                SleepWhileSuspended();

                string oldPathname = Path.Combine(directory, remoteFile.Name);
                string newPathname = Path.Combine(directory, newFilename);
                try
                {

                    Logger.InfoFormat("Renaming: {0} -> {1}", oldPathname, newPathname);

                    IDictionary<string, object> properties = new Dictionary<string, object>();
                    properties[PropertyIds.Name] = newFilename;

                    IDocument updatedDocument = (IDocument)remoteFile.UpdateProperties(properties);

                    // Update the path in the database...
                    database.MoveFile(SyncItemFactory.CreateFromLocalPath(oldPathname, repoinfo), SyncItemFactory.CreateFromLocalPath(newPathname, repoinfo));

                    // Update timestamp in database.
                    database.SetFileServerSideModificationDate(
                        SyncItemFactory.CreateFromLocalPath(newPathname, repoinfo),
                        ((DateTime)updatedDocument.LastModificationDate).ToUniversalTime());

                    Logger.InfoFormat("Renamed file: {0} -> {1}", oldPathname, newPathname);
                    return true;
                }
                catch (Exception e)
                {
                    ProcessRecoverableException(String.Format("Could not rename file: {0} -> {1}", oldPathname, newPathname), e);
                    return false;
                }
            }
开发者ID:jelacote,项目名称:CmisSync,代码行数:36,代码来源:SynchronizedFolder.cs

示例3: RenameRemoteFile

        /// <summary>
        /// Rename a file remotely.
        /// </summary>
        private bool RenameRemoteFile(string directory, string newFilename, IDocument remoteFile)
        {
            CheckPendingCancelation();

            string oldPathname = Path.Combine(directory, remoteFile.Name);
            string newPathname = Path.Combine(directory, newFilename);

            Logger.InfoFormat("Renaming: {0} -> {1}", oldPathname, newPathname);

            IDictionary<string, object> properties = new Dictionary<string, object>();
            properties[PropertyIds.Name] = newFilename;

            IDocument updatedDocument;
            try
            {
                updatedDocument = (IDocument)remoteFile.UpdateProperties(properties);
            }
            catch (Exception e)
            {
                HandleException(new RenameRemoteFileException(oldPathname, newPathname, e));
                return false;
            }

            // Update the path in the database...
            database.MoveFile(SyncItemFactory.CreateFromLocalPath(oldPathname, SyncFolderInfo), SyncItemFactory.CreateFromLocalPath(newPathname, SyncFolderInfo));

            // Update timestamp in database.
            database.SetFileServerSideModificationDate(
                SyncItemFactory.CreateFromLocalPath(newPathname, SyncFolderInfo),
                ((DateTime)updatedDocument.LastModificationDate).ToUniversalTime());

            Logger.InfoFormat("Renamed file: {0} -> {1}", oldPathname, newPathname);
            return true;
        }
开发者ID:lelmarir,项目名称:CmisSync,代码行数:37,代码来源:SyncFolderSyncronizer.cs


注:本文中的IDocument.UpdateProperties方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。