本文整理汇总了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);
}
示例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;
}
}
示例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;
}